如何在页眉和页脚之前删除多余的空格?

时间:2016-01-31 09:58:31

标签: html css wordpress

我想删除标题上方和博客页脚之后的额外空格。如何删除它? 我在我的博客上使用WordPress和Genesis News Pro Theme。

您可以查看博客 - https://web.archive.org/web/20160306192700/http://recruitmentapplicationforms.in/

3 个答案:

答案 0 :(得分:0)

您需要更改课程margin:60px auto

中的.site-container
.site-container {
background-color: #fff;
border: 1px solid #e3e3e3;
margin: 0px auto;  /* change 60px to 0px */
max-width: 1140px;
}

答案 1 :(得分:0)

您已将margin: 60px auto;应用于.site-container课程。只需将其更改为margin: 0px auto;

即可

目前,该网站的页面顶部和底部有60px的边距。

答案 2 :(得分:0)

由于您在“site-container”类中使用的边距样式,这种情况正在发生。

如果您不希望在顶部和底部有边距,那么您可以为左和右指定显式边距,即

margin-left和margin-right而不是仅使用margin:60px auto;