If you want to make the ads unit automatically appear on every single post, you often insert adsense code in HTML template. It was not wrong, but if you want to make About page or Contact page, the ads unit will always appear. Then, how to create a Blogger pageon without ads?
We’re just going to play with CSS code. You must create a new div tag ads on each ads unit code in the HTML template. I will give you an example.
Example:
I will put the ads code between div units.
<br /><div class='hide-ads'&gt;<br /><script type="text/javascript"><!--<br />google_ad_client = "pub-xxxxxxxxxxx";<br />google_ad_host = "pub-xxxxxxxxxxxx";<br />/* 336x280, socialblogr new */<br />google_ad_slot = "3279156146";<br />google_ad_width = 336;<br />google_ad_height = 280;<br />//--><br /></script><br /><script type="text/javascript"<br />src="http://pagead2.googlesyndication.com/pagead/show_ads.js"><br /></script><br /></div><br />
OK, now create a post with the following options:
- Set the post date into past month. So, your post will not appear as a newest post.
- Set the CSS style for the ads to become invisible units by entering the CSS code into your post.
<br /><style><br />.hide-ads {display: none!important;visibility: hidden!important;}<br /></style><br />
This trick also can be used to hide some element in your blog. You can check the result at my Contact page.
Happy hacking..

