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.
Tuesday 30 Oct 2007 | Life, Coding, JavaScript

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
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
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.