Saturday, 19 May 2012
How To Hide/Remove Navbar In Blogger , Remove Blogger Header
Posted by
Anonymous
,
04:01
About Blogger Navbar:
1. There are two buttons on the navbar that point to the Blogger Homepage. Too much of self-promotion.2. The NextBlog button takes visitors to another recently-updated randomly selected blog on blogspot. But what if clicking the NextBlog button takes my innocent readers to a blog with adult offensive content.
3. The Search Blog Form is not integrated with my Adsense for search account. I want visitors to use my custom Google site search form that is monitized by Google Adsense.
4. The existing Blogger Navbar colors do not gel with my custom blogger theme.
5. The BlogThis! pop-up link is already availble when I enable Blogger Backlinks.
To hide the Blogger Navbar, try any of these CSS techniques. [they should work with Blogger Beta or Blogger 3.0 as well]
First Technique:
Go To Blogger>>Your Blog>>Template>>Customize>>Additional>>Add CSSbody{margin-top:0px;position: relative;top: -50px;}
Second Technique:
<style type="text/css">
#b-navbar
{
height:0px;
visibility:hidden;
display:none
}
</style>