Tuesday, July 6, 2004

Blogger Hack: Remove Banner Ad

If you host your blog at Blogspot server, visitors will see Blogger Navbar everytime, in every pages. Use a little trick to remove that banner:

Step 1: Open
Go to Template > Edit HTML option.

Step 2: Find
Search for the <body> tag. If you use Internet Explorer browser, press Ctrl+F to open the Find dialog box.

Step 3: Replace
Just replace the <body> tag by following lines:

<noembed><xmp>

<body>
</xmp></noembed>

Step 4: Save
Click on the Save Template button. Done!

Note: Save the template code in a plain-text file before editing.

# # #

Alternative Method [Update]

1. Go to Template > Edit HTML.
2. Add following lines in CSS section:

#navbar-iframe
{
opacity:0.0;
filter:alpha(Opacity=0)
}
#navbar-iframe:hover
{
opacity:1.0;
filter:alpha(Opacity=100, FinishedOpacity=100)
}


3. Click on Save Template.

Done!

4 comments:

abhaga said...

<xmp> tag is not needed. Only <noembed> will do.

Krista said...

Awesome hack... Thanks!

Deleep George said...

Excellent Hack .... Great .......!!!

Anonymous said...

hey thank you!

Post a Comment