WHAT'S NEW?
Loading...

How to hide the Blogger Navbar


With all the changes to Blogger's template system, it seems no wonder
that my tutorial for hiding the Blogger nav-bar no longer works effectively.

Blogger Navbar hideIn case you were wondering, it is possible to hide the Blogger nav-bar (which displays a search box and useful links). The principle is the same as in my previous tutorial in that we simply need to add a few lines of CSS to our Blogger template code.



Here's how my updated technique to hide the Blogger nav-bar in a few simple steps:

  1. Go to Design>Edit HTML in your Blogger dashboard
  2. Using your browser's search function, locate the closing </b:skin> tag in your template's HTML markup.
  3. Immediately before this line, paste the following section of code:

#navbar-iframe, #navbar, .navbar {height:0px; visibility:hidden; display:none; margin: 0 !important;}

  1. Preview the changes to ensure everything looks the way it should, then click "Save".
That's all there is to it!