Here is a tip on how to block or hide Adsense ads on a single Blogger blog post.
You need to do this, probably because you have received a warning message from Google Adsense.
It could be, one of your blog posts have violated its program policies.
How to block Adsense ads on single Blogger post
There are two things which you have to do:
First you have to add div to Adsense code.
Second, you need to add a special JavaScripts at the end of any of the blog post which you do not want to show any Google Adsense ad.
Before you do any changes to your Blogger template, always backup of your Blogger themee.
In case you screw up, you can always revert back to your present template.
How to hide or exclude one Adsense unit
1. First, you have to put <div id="AdsenseAds1"> and <div> between your Adsense code, as illustrated below:
<script type="text/javascript">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-xxxxxxxxxxxxxxxx";
/* 160x600, created 9/20/11 */
google_ad_slot = "xxxxxxxxxx";
google_ad_width = 160;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
var Ads1 = document.getElementById('AdsenseAds1');
Ads1.parentNode.removeChild(Ads1);
</script>
More than one Adsense unit
For example, if you have THREE Adsense ad units on your page, then this is how it is done.
1. Similar to the above example, you have to add div tags between each ad unit.
Adsense code for ad unit 1
</div>
<div id="AdsenseAds2">
Adsense code for ad unit 2
</div>
<div id="AdsenseAds3">
Adsense code for ad unit 3
</div>
3. This is what you need to add at the end of your post:
var Ads1 = document.getElementByI('AdsenseAds1');
var Ads2 = document.getElementById('AdsenseAds2');
var Ads3 = document.getElementById('AdsenseAds3');
Ads1.parentNode.removeChild(Ads1);
Ads2.parentNode.removeChild(Ads2);
Ads3.parentNode.removeChild(Ads3);