Friday, April 2, 2010

Learn To Remove Navbar from Blogger Blogs

Navbar is a navigation bar that blogger displays on the top of every blogger blog. This Navigation bar helps to search blogs, visit next blog, sign in and create new account. Also you can report abuse for objectionable content. I personally think that navbar gives bad look to any blog. Blogger don’t give any option to remove it, still we can remove or hide it manually.

Most of the bloggers doesn’t like to use the same old blogspot templates. Everyone wants to give it a nice look according to their own choice, preferences, theme etc. Navigation Bar doesn’t go with the look we usually want for our blogs or websites.
So the good news is we can remove or hide the navigation bar with simple steps.

Login to your Blogger Account.
Open your Dashboard
Go To Layout Settings Edit HTML
Search for the following line of code:

/* Variable definitions
====================

Before the above code, add the following line CSS code:

#navbar { display: none; }

or:

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

Save template and bye bye to Navbar

And another method to disable navigation bar:

just add following code template to

<style type="text/css">
#b-navbar {
  height:0px;
  visibility:hidden;
  display:none
}
</style>
And remove the above codes in case you want navbar back!!

No comments: