Though there is lot of material available on this issue on the blogs that talk about blogger hack and tips and tricks only since one of our reader asked how to remove blogger navbar, so i am answering his query.Though he asked me about new blogger but i am also telling you about how to remove or disable navbar for old or classic blogger both.
New blogger:
Just add the following lines anywhere in your Blogger template enclosed by style tags and the blogger navbar will be removed
#navbar-iframe {
height:0px;
visibility:hidden;
display:none;
}
Old blogger:
Insert this CSS code in your old or classic Blogger Template to disable or remove the Blogger Navbar.
<style type="text/css">
#b-navbar {
height:0px;
visibility:hidden;
display:none
}
</style>
Hopefully this will remove the blogger navigation bar aka navbar for both new and old blogger templates.If you still face any problem in this then contact me
2 comments:
12:04 AM
Here is another way for this.Just use this :
div.navbar {
opacity:0.0;
display:none;
}
For those of you interested in moving the navbar to the bottom of the page, try pasting the following after your body tag,within style tag:
body { position: relative; }
#b-navbar {
position: absolute;
top: inherit;
bottom: 0px;
margin-bottom: 0;
}
....Tricks 2 Trick
8:33 PM
I just love your posts and that is why you are my fav
http://techstyro.blogspot.com/2008/08/blogs-that-i-love-to-read.html
Post a Comment