首页 > 解决方案 > How can I center my posts and pages in blogger?

问题描述

I want to center my blog body (Posts and Pages) in blogger, its a custom template Link: www.temsah.ga

I tried adding this code below </b:skin> :

    <style>
#sidebar-atas1
{
display: none;
}
#main-wrapper
{
width: 100%; background:#fff;
}
</style>

It removed the sidebar successfully but it didn't center my body.

标签: htmlcssblogger

解决方案


我检查了你的网站。问题是您的模板为侧边栏提供了空间。将您的.portfolio-wrap宽度设置为 100%。那应该解决它。

.portfolio-wrap {
    width: 100%;
}

推荐阅读