20080918

Navbar

Since I started this blog there was one thing I really didn't like:
the blogger navigation bar!
So I decided it was time to removed the navbar. The effect is not the best because the navbar is still loaded, but nevertheless it is hidden just afterwards.

Here how I've done it:

- in edition mode open layout
- click on edit html
- add following script between html tags:
<script type="text/javascript">
function hideBar()
{
document.getElementById('Navbar1').style.display = "none";
}
</script>

- and execute the script during page load:
<body onload='hideBar()'>

- save template

If you found a better way let me know...

No comments: