METHOD 1: Using Default Blogger Widgets
1.remove all adsense widgets/codes from ur blog
2.go to layout –> page elements
3.click on edit for blog posts
4.enable ads in blog posts, choose the ad template u want
5. now go to edit html
6. check ‘Expand Widget Templates’
7. search for the following lines
Code:
2.go to layout –> page elements
3.click on edit for blog posts
4.enable ads in blog posts, choose the ad template u want
5. now go to edit html
6. check ‘Expand Widget Templates’
7. search for the following lines
Code:
<b:if cond=’data:post.includeAd’>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</b:if>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</b:if>
8.cut it and paste on notepad
9. modify it to
Code:
9. modify it to
Code:
<div style=’float:left;’>
<b:if cond=’data:post.includeAd’>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</div>
<b:if cond=’data:post.includeAd’>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</div>
10. now find this line
Code:
Code:
<div class=’post-body entry-content’>
11. paste our modified code below this line
12. make sure the next line after our code is
Code:
12. make sure the next line after our code is
Code:
<data:post.body/>
13. click on save template, u r done!!
u can now add more adsense widgets to the sidebar or wherever as required
u can now add more adsense widgets to the sidebar or wherever as required
the problem with this method is that u cant track the ads individually
so for performance tracking use method 2
so for performance tracking use method 2
METHOD 2: Using Adsense codes
1. Make sure u have disabled show ads in post option
2. from the adsene site create an ad, with the size and template desired. add it to a channel to track its performance
3. copy the created adsense script on notepad as we need to modify it a bit
dont worry this is not going to be against their TOS
4. now modify
< with <
> with >
” with "
5. the final output should look something like this
Code:
2. from the adsene site create an ad, with the size and template desired. add it to a channel to track its performance
3. copy the created adsense script on notepad as we need to modify it a bit
dont worry this is not going to be against their TOS
4. now modify
< with <
> with >
” with "
5. the final output should look something like this
Code:
<script type="text/javascript"><!–
google_ad_client = "pub-0000000000000000";
google_ad_width = 336;
google_ad_height = 280;
google_ad_format = "336x280_as&amp;quot;;
google_ad_type = "text";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "000000";
google_color_text = "000000";
google_color_url = "000000";
//–></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
google_ad_client = "pub-0000000000000000";
google_ad_width = 336;
google_ad_height = 280;
google_ad_format = "336x280_as&amp;quot;;
google_ad_type = "text";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "000000";
google_color_text = "000000";
google_color_url = "000000";
//–></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
6.add <div style=’float:left;’> and </div> to the top and bottom respectively
7.go to edit html–>click expand widgets
8. find
Code:
7.go to edit html–>click expand widgets
8. find
Code:
<div class=’post-body entry-content’>
and paste our code below this line like steps 10,11,and 12 of method 1 above
9. save template, u r done!
9. save template, u r done!
this method can be used for any ads not just the ones in the post
just make sure u modify the code as said
just make sure u modify the code as said