Friday, May 30, 2008

How to hide Navbar in Blogger?

Get Blogger Tips, Tricks and Templates directly in inbox

Do you want to hide and get rid of navbar in blogger blog.


Look at this simple tip and follow these simple steps:

1. Go to your blogger Dashboard and select Layout.

2. Click Edit HTML.

Now there are two ways to hide navbar:

Method 1. Find <b:skin><![CDATA[/* and after that paste this simple code

#navbar-iframe {
display: none !important;
}


[Via]

Method 2. Just add the following lines anywhere in your Blogger template [enclosed by <style> tags] and the blogger banner will be gone forever.

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


Alternatively, if you are using the Classic beta template inside new Blogger beta, search and replace #b-navbar with #navbar-iframe to get rid of the blogger navbar.

[via]

0 comments:

  © Blogger template 'SimpleBlue' by Ourblogtemplates.com 2008

Back to TOP