Please Note: Before Editing your Template, Save a copy of your current template by clicking ‘Download Full Template’ in ‘Edit HTML’ page of the Blogger ‘Layout’ Window and ‘Preview’ the changes before Saving
Navigation Bar appears at the top of Every Blogger Blogs. It helps the Visitors to Search any Blog in Blogger Directory or to Flag any Objectionable Content in the Blog. Some Bloggers really don’t like this Navigation Bar as it causes some ‘discomfort’ to their nice template! It’s very easy to remove or hide the navigation bar of blogger(blogspot) blogs.
Just do the following steps:
- Go to Edit HTML page in the Blogger Layout Window
Find the following Code:
#navbar-iframe {
height: 30px;
}
- To Remove the Navigation Bar, Replace the above code as:
#navbar-iframe {
height: 0px;
}
- To Hide the Navigation Bar, Replace the code as:
#navbar-iframe {
visibility: hidden;
}
(In this case, Navigation Bar will be displayed only when the user scrolls the pointer at the top)
Then Save the Template.
This trick will definitely work in all Standard Blogger Templates and WordPress converted Customized Templates. Have a nice Blogging!
You May Also Like:

Article by
Shafar.
About the Author: Tech Freak, Android Lover, Wordpress Addict, Social Media Junkie and the Founder of TipsBlogger.
To submit guest posts to TipsBlogger, please read the Guidelines.
Leave a Reply
This one will work too:
#navbar-iframe {
display:none;
}
or you can add all the properties like this:
#navbar-iframe {
visibility: hidden;display:none;height:0px;
}