在 Blogger 博客中隐藏侧边栏后,如何使特定 post 页面 100% 显示?

How can I make a specific post page 100% after hiding its sidebar in Blogger blog?

我已成功隐藏 post 的侧边栏,但我仍然希望通过在所有屏幕(移动设备、台式机和 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>

您需要重新设置元素的宽度.blog-posts-wrapper

将此添加到您上面的代码中

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