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>:
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 = ["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>
... <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:
<< Home
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 ?
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
<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
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 !!
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