在Blogger博客中隐藏侧边栏后,如何将特定的帖子页面100%制作出来?

时间:2018-10-27 18:50:47

标签: html css blogger

我已经成功隐藏了帖子的侧边栏,但我仍然希望通过在移动,台式机和PC等所有屏幕上全屏显示内容来使页面具有足够的响应速度。

我使用的这段代码并未将整个页面呈现为100%。请,我需要您的帮助:

<b:if cond='data:blog.url == &quot;https://www.neuroscientia.com/2018/08/does-noocube-really-work.html&quot;'>
  <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>

1 个答案:

答案 0 :(得分:0)

您需要重置元素.blog-posts-wrapper

的宽度

将此添加到上面的代码中

.item .blog-posts-wrapper {
    width: 100%;
    margin: 0;
}