Google
 
Web unafbapune.blogspot.com

Wednesday, June 22, 2005

 

Remove the Blogger's Header

Just add the following script to the bottom of your Template after the </body> and before the </html>:

... </body> <script> var a = ["b-navbar", "header"] for (var i=0; i < a.length; i++) { var e = document.getElementById(a[i]) e.style.visibility="hidden" e.style.display="none" } </script> </html>
Update in 2012: Apparently the template has been changed. So here is an update. Just add the following script right after the <body>:
... <body> <script> var a = ["navbar-iframe-container"] for (var i=0; i < a.length; i++) { var e = document.getElementById(a[i]) e.style.visibility="hidden" e.style.display="none" removeChild(e); } </script>

Comments:
Bless you for this
 
it didn't work for me..
 
Didn't work for me either. Please put something that'll work with the new templates - minima especially !
 
Simply look into the page source on this blog, and you will find the script that works with the new templates. Right ?
 
I think this doesn't work with XML.
 
The new way to do it would be this:
<script>document.getelementbyid('header-wrapper').style.visibility = 'hidden';document.getelementbyid('header-wrapper').style.display="none";</script>
Just add an HTML/Javascript element to your page and put this code in. :D
 
may know why it not working
 
http://blogger-templates.blogspot.com/2005/01/remove-navbar.html

Check this it works

Regards.
FforFree.blogspot.com
Keep Coming back for more free stuff, Updated daily !!
 
I did this just now in only a few seconds and it worked and looks great! Thanks so much for the info
 
Post a Comment

<< Home

This page is powered by Blogger. Isn't yours?