我已经成功隐藏了帖子的侧边栏,但我仍然希望通过在移动,台式机和PC等所有屏幕上全屏显示内容来使页面具有足够的响应速度。
我使用的这段代码并未将整个页面呈现为100%。请,我需要您的帮助:
<b:if cond='data:blog.url == "https://www.neuroscientia.com/2018/08/does-noocube-really-work.html"'>
<style>
.sidebar {display:none;}
#main-content{width: 100%; float: none; margin: 0 auto;}
.main-content .column-center-inner {width: 100%; margin-left: 0px;}
</style>
</b:if>
答案 0 :(得分:0)
您需要重置元素.blog-posts-wrapper
将此添加到上面的代码中
.item .blog-posts-wrapper {
width: 100%;
margin: 0;
}