无法找到导致正确边距的CSS

时间:2015-09-14 19:12:11

标签: html css wordpress wordpress-theming underscores-wp

我像疯子一样通过我的CSS,但我无法弄清楚20左右像素的额外右边距何在?该网站位于http://goodtimesdjservice.com/,页面右侧有空白区域。它是使用underscore_s框架主题的。我为他的noob问题道歉,试图找到罪魁祸首,并感谢任何意见。

2 个答案:

答案 0 :(得分:1)

<div id="footergroup" class="row footerbg">

具有row的{​​{1}} css类。摆脱它将摆脱你不想要的空间。

答案 1 :(得分:1)

你可以试试这个。设置max-width:1300px并覆盖.row

.footergroup中的边距
#wrapper {
max-width: 1300px; /*old value 1400px*/
margin: 0 auto;
background-color: red;
}
#footergroup {
background: #666 url("../img/contact-wrapper.jpg");
background-repeat: repeat-y;
margin: 0px; /*override .row{margin-right: -15px; margin-left: -15px;}*/
}

希望这对你有帮助。!