我在尝试删除帖子图片和首页上帖子内容之间的空白时遇到问题。
我想这样做是为了在内容背后的图像后面添加一个背景颜色,使其有点像这样:http://themeforest.net/item/total-responsive-multipurpose-wordpress-theme/full_screen_preview/6339019(在投资组合中)。
如果我现在添加.loop-entry-content { background-color: #F2F2F2; }
,我的图片和帖子标题之间会有一个空格。
我目前正在使用主题Twenties,您可以在此处看到:http://themeforest.net/item/twenties-clean-responsive-blog-wordpress-theme/full_screen_preview/7876029
一些帮助将受到高度赞赏:)谢谢
答案 0 :(得分:0)
检查以下课程
.loop-entry-media {
margin-bottom:20
}
您需要按以下方式更改margin-bottom : 0;
.loop-entry-media {
margin-bottom:0
}
还可以找到.loop-entry-content类并添加以下代码
.loop-entry-content {
background: #f7f7f7 none repeat scroll 0 0;
border: 1px solid #eee;
padding: 15px;
}