Small tip for blogger.com users

If you do not like the navigation panel (the bar in the top of the page) - you can hide it.
Just add the following javascript in your site template:

function hidenav() {
document.getElementById(’navbar’).style.display=’none’;
}

Then add onload=”hidenav()” to the body HTML tag

That’s all. Have fun.

3 Responses to “Small tip for blogger.com users”

  1. on 24 Mar 2008 at 10:48 pm Yuriy Volkov

    or just add the folowing to the CSS section of your blogger template

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

    BTW, the bar is at the top of the page, not bottom ;-)

  2. on 25 Mar 2008 at 10:05 am Andrew Dashin

    Yuriy, thanks, it’s realy at the top!

    Yep, I know, but I am not strong at CSS so it isn’t the first thing I think about :)

  3. on 26 Mar 2008 at 11:40 am Yuriy Volkov

    Actually I’m not strong too ;-) . I’ve found the solution here http://blogger-templates.blogspot.com/2005/01/remove-navbar.html when I decided to remove it from my blog.

Trackback this Post | Feed on comments to this Post

Leave a Reply