Hide Navigation Bar In Blogger

If you are frequent blogger and use Blogspot for blogging, you might have seen above header there is navbar or navigation bar . Most of want to hide the navigation bar in blogger , but we don’t know how to do that. Here is a simple trick to hide the navigation bar in blogger.


Just follow the steps below

  1. Log in to your blogspot account and select the Layout of the blog which you want to modify.
  2. Select the tab page Template and then click on Edit HTML
  3. Search for the text : body {
  4. Paste following code above the text in red.

    /* Cascade Style Sheet to hide navigation bar */
    #navbar
    {
    height:0px;
    visibility:hidden;
    display:none
    }

Finally HTML will appear like as shown below-