简体   繁体   中英

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

I have succeeded in hiding the sidebar of a post but I would still like to make the page responsive enough by spreading the content full width on all screens- mobile, desktop, and PC.

This code I used didn't render the whole page as 100%. Please, I need your help with this:

 <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> 

You need to reset width of the element .blog-posts-wrapper

Add this to your code above

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM