Make Blogger Home Page Full Width and Hide Sidebar

Learn how to make Blogger Home Page Full Width and Hide Sidebar. Display full width content on blogger homepage.
tricks

By using simple trick we can make Blogger template unique. Tweaking is the main part to add variation on it. So in this tutorial I will show you an amazing tutorial where we will able to hide the template sidebar from Blogger home page and make the post area full width both in Blogger custom and default template. But if any user click on post then s/he will able to see blog post with sidebar. This is really amazing trick. Those who are using a Blogger template with medium width then you can use this trick that will help to make your home page widget and sidebar will appear after entering into post page.   Though previously I have shown how to create a Full width page on Blogger static page. But now by following this tutorial you will able to hide sidebar from blogger home page and display full width home page.

Recommended: 

Applying the trick on Blogger Default Template

Below tutorial for those who are using Blogger default template like Simple, Picture Window, Awesome int. So please follow the instruction from below.

Step 1 Log in to your Blogger Account and Go to your Blogger Dashboard

Step 2 Click on Now click on -> Template -> Edit HTML

Step 3 Now find the </b:skin> by pressing Ctrl+F (Windows) or CMD+F (Mac)  

Step 4 Copy the code from below and Paste the code after/below </b:skin> 

<b:if cond='data:blog.url == "http://www.BloggerSpice.com/"'>
<style>
.main-inner .columns {
padding-left: 0px !important;
padding-right: 0px !important;
}
.main-inner .fauxcolumn-center-outer {
left: 0px !important;
right: 0px !important;
}
.main-inner .fauxcolumn-left-outer, .main-inner .fauxcolumn-right-outer, .main-inner .column-left-outer, .main-inner .column-right-outer {
display: none !important;
}
</style>
</b:if>

Step 5 Now simply hit the Save template Button. 

Customization

  • Replace the http://www.BloggerSpice.com/ with your Blog URL.

Applying the trick on Blogger Custom Template

If you not using Blogger default template then you can use below steps. So please follow the instruction.

Step 1 Log in to your Blogger Account and Go to your Blogger Dashboard

Step 2 Click on Now click on -> Template -> Edit HTML

Step 3 Now find the </b:skin> by pressing Ctrl+F (Windows) or CMD+F (Mac)  

Step 4 Copy the code from below and Paste the code after/below </b:skin> 

<b:if cond='data:blog.url == "http://www.BloggerSpice.com/"'>
<style>
#main-wrapper .post {
padding-left: 1px !important;
padding-right: 1px !important;
}
#main-wrapper { width:99%!important;}
.post { width:99%!important; }
#sidebar-wrapper, #midsidebar-wrapper .post-header-line-1, .post-footer, {
display:none !important;
}
</style>
</b:if>

Step 5 Now simply hit the Save template Button. 

Customization

  • Replace the http://www.BloggerSpice.com/ with your Blog URL.
Recommended: 

You have successfully applied the trick. Now check your Blog and see that sidebar is not showing on your Blogger homepage. But when you entering into your post page then sidebar is showing. Another positive of this feature is that it will increase your page loading time. Because Blogger sidebar always contain 3 to 4 widget, so this trick hiding the sidebar on Blogger home page, for this reason your Blogger template will load faster. Thanks.
Go Up