找不到导致右边距的 CSS

Can't find the CSS that's causing a right margin

我像个疯子一样经历了我的 CSS 但我无法弄清楚 20 左右像素的额外右边距是从哪里来的?该站点位于 http://goodtimesdjservice.com/,页面右侧有空白。它使用 underscore_s 框架作为主题。对于他的菜鸟问题,我深表歉意,已尝试找出罪魁祸首,并感谢任何意见。

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

row css class 其中有 margin-right: 15px。摆脱它会摆脱你不想要的space。

你可以试试这个。设置 max-width:1300px 并为 .footergroup

覆盖 .row 中的边距
#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;}*/
}

希望对您有所帮助!