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