Wordpress标题CSS问题

时间:2014-09-10 04:47:43

标签: css wordpress header

我一直在处理以下网站(http://tinyurl.com/lp5qtkc),我无法弄清楚如何删除标题和内容之间的空格。我已经尝试删除其上方的页面标题,但内容向上滑动,内容框保持在相同的位置。有什么想法吗?

2 个答案:

答案 0 :(得分:1)

有一个div类名称' whitebackground'你可以用它的位置来弥补两者之间的差距。

像这样:

.whitebackground{
    top: 190px;
}

请使用浏览器的inspect element选项调试此类问题。

答案 1 :(得分:1)

您需要将.whitebackground CSS类更改为

.whitebackground {
    top: 190px; /* 100px less than what it was */
}

并且还更新以500毫秒为间隔执行的JavaScript(在第242行的templatesjs.php文件中找到),这会更新背景的高度,以便页面底部的内容正确呈现。

setInterval(function() {

  jQuery('.tiledbackground').height(jQuery(document).height());
  jQuery('.whitebackground').height(main_cont.outerHeight()-39); // 100px more

},500);