Saturday, July 28, 2007

Hide Blogger Bar



You can hide your blogger bar or blogspot bar by simply add the following code inside your html code,for this first go to templates->edit html->add the following code after all the variable definitions
/* Hide the blogspot adds */

#navbar-iframe{opacity:0.0;filter:alpha(Opacity=0)}
#navbar-iframe:hover{opacity:1.0;filter:alpha(Opacity=100, FinishedOpacity=100)}

Note:if your mouse is over on bar it will appear in Mozilla Firefox browser,and all the links will work in any browser because this code just hide the bar not removing.

Remove Navbar
just cut and paste the following code in your html coding
#navbar-iframe {
height:0px;
visibility:hidden;
display:none;
}
it will completely remove the blogger navbar

2 comments:

Chris said...

Any way to make it appear in IE as well as FireFox, I am assuming it would have to be a css hack?

I installed the code on my template and it worked great, thanks

Chris
http://blog.itrealm.net

Anonymous said...

This is great info to know.