How to hide the Blogger navbar ?

August 17, 2008 | Bookmark and Share

Each Blogger blog has a navigation toolbar (called Blogger navbar) on the top. This Navbar helps readers across blogs. It also features a search bar and others.


We can change its color when clicking the Edit link on layout.

In the case of hiding or removing it, put a small CSS code below in between <b:skin><![CDATA[/* and ]]></b:skin> tags in your HTML template (Layout | Edit HTML).

/* Hide navbar by myblogplus.com */
.navbar{
display: none;
}

Another code:
/* Hide navbar by myblogplus.com */
#navbar-iframe{
height: 0px;
}


in Labels: ,
Share/Save/Bookmark Subscribe

What's Next?

Related Posts by Categories


1 comments: to How to hide the Blogger navbar ? so far ...

k14 said...

Thankss!!

Post a Comment