How to Hide Blogger Navigation Bar in Blogspot Blogs
If you have a blogspot blog you must have noticed the blogger navigation bar at the top of the page. Looks distracting to me!
If you want to know how to hide that navigation bar from displaying, there are 2 tricks – one based on javascript and the 2nd one pure CSS code.
Here i am describing the CSS hack to hide the navigation bar. Javascript code for hiding the navigation bar will be posted later.
Here is what need to do:
Login to your blogger account
Click on ‘Layout’ option
Click on ‘Edit HTML’ option under ‘Layout’ tab
You will be presented with the ‘Edit Template’ screen
Find following line
body {
margin: 0;
padding: 0;
font-size: small;
text-align: center;
color: $textcolor;
background: #000000
}
[NOTE: code between body{ } may vary depending on the template chosen]
Just below this code copy and paste the following code -
#navbar-iframe{
display: none;
}
Now save the template and publish.
Thats it, you are done! Check out the blog in a new window. The navigation bar will be gone.
Usenet Trial
July 29th, 2009 at 9:27 pm
Sometimes it’s really that simple, isn’t it? I feel a little stupid for not thinking of this myself/earlier, though.
Ivan J.
August 7th, 2009 at 9:02 pm
Worked great. Thanks for the tip!