我想将我的博客主体(帖子和页面)放在博客中心,它是一个自定义模板链接:www.temsah.ga
我尝试在</b:skin>
下面添加以下代码:
<style>
#sidebar-atas1
{
display: none;
}
#main-wrapper
{
width: 100%; background:#fff;
}
</style>
它成功地移除了侧边栏,但它并没有使我的身体居中。
我检查了你的网站。问题是您的模板为侧边栏提供了空间。将您的.portfolio-wrap
宽度设置为100%。那应该解决它。
.portfolio-wrap {
width: 100%;
}
在这里你有一个div应该包含你想要居中的所有html
<div class="center">
/*Your html goes here*/
</div>
这是它的css
.center {
margin: auto;
width: 95%;
padding: 10px;
}
希望有所帮助。