Even though I’m a fan of WordPress, I used to use Blogspot. That annoying nav bar at the very top of the page and distracts from your blog is real easy to hide. Just go into the Layout, and choose Edit HTML. Copy the following code and paste it in the CSS section of the template.

#navbar-iframe {
height:0px;
visibility:hidden;
display:none
}

“Paste it where?” You can identify that section by looking for coding enclosed in brackets that look like this { } .

Example of actual CSS section and where the new code would go (your CSS for ‘body’ might be slightly different, but the format will be the same):

body {
	margin:0;
	padding:0;
	font-size: small;
        text-align:center;
	color:$textColor;
	line-height:1.3em;
	background:#4C4C4B;
}

#navbar-iframe {
height:0px;
visibility:hidden;
display:none
}

Click “Preview” to check your results before publishing to be sure you have it in the right place. That’s it!

Share and Enjoy:
  • Print this article!
  • del.icio.us
  • Facebook
  • MySpace
  • StumbleUpon
  • Technorati
  • E-mail this story to a friend!

[Post to Twitter]     [Post to Digg]    

Comments Welcome