Saturday, October 30, 2010

Getting Rid of Blogspot Navbar

If you're obsessive compulsive and annoyed by the blogspot navbar that appears on the top of the screen, just follow these simple instructions!

1. Go to the "edit HTML" option under the "Design" tab.
2. Find the
body{........
}
section of the code (labeled just under "Content----" for me) and paste this code on a new line, after the "}".

#Navbar1 {
margin: 0;
padding: 0;
display: none;
visibility: hidden;
}

3. Save and enjoy. Should be a fairly simple fix for even the non-coding savvy.


4. To reverse the changes and bring back the navbar, simply delete the:


"display: none;
visibility: hidden;"

section of the code.

2 comments:

astro pix said...

haha! i actually use it often! :)

thanks though, ill know where to look when it starts to annoy me

Anonymous said...

thanks for the useful tips