你能告诉我如何在我主页画廊的上方和下方制作相等的间距

时间:2013-08-14 14:55:13

标签: css gallery space temp

enter image description here我使用基于模板的网站,添加了css。所以我没有任何代码可以添加,除了下面。这是我site我试图解决的问题。 下面的代码是我添加来修复我的主页库上方的间距,它搞砸了画廊下方的空间。我试图让顶部和底部的空间相等。

.sqs-layout .sqs-row .sqs-block:last-child {
 padding-bottom: 34;
 padding-top: 0;

1 个答案:

答案 0 :(得分:0)

你有CSS #pageWrapper{margin-bottom:30px;},它通常以大屏幕尺寸显示。但是,当您调整窗口大小时,该空间仍然存在。
解决方案是将margin-bottom:0px;添加到@media内容中:

@media only screen and (max-width: 800px)
#header, #pageWrapper, #footer{
padding: 30px 20px;
margin-bottom:0px;
}



编辑:
<{1}}查询中的margin-bottom: 0px !important应该这样做。