我目前正在使用此主题, 并且我想删除名为Lifestyle和Food的小部件之间的间距。我应该使用哪种代码来完成此任务?
#1
你可以在.ig_widget类的margin-bottom属性处删除或设置较低的值。
因此, 你可以覆盖当前的CSS规则:
.ig_widget {
border: solid 1px #dcdad5;
margin-bottom: 20px;
font-size: 12px;
padding: 25px;
}
编写自己的规则:
.ig_widget {
margin-bottom: 5px !important;
}
#2
使用以下CSS
.ig_widget{
margin-bottom:0;
}
如果你也要删除”关于我”小部件的下边距, 请使用以下CSS
.container-aboutme{
margin-bottom:0;
}
评论前必须登录!
注册