nikhil88
Regular Member
- Joined
- Jun 12, 2008
- Messages
- 208
- Reaction score
- 98
i had mentioned about this in another thread but now the threads been deleted. plus i had few ppl ask me for help so here it is
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
8.cut it and paste on notepad
9. modify it to
10. now find this line
11. paste our modified code below this line
12. make sure the next line after our code is
13. click on save template, u r done!!
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
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
6.add <div style='float:left;'> and </div> to the top and bottom respectively
7.go to edit html-->click expand widgets
8. find
and paste our code below this line like steps 10,11,and 12 of method 1 above
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
hope this helps, ask me if u face any difficulties
nikhil88
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:
<b:if cond='data:post.includeAd'>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</b:if>
9. modify it to
Code:
<div style='float:left;'>
<b:if cond='data:post.includeAd'>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</div>
Code:
<div class='post-body entry-content'>
12. make sure the next line after our code is
Code:
<data:post.body/>
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
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:
<script type="text/javascript"><!--
google_ad_client = "pub-0000000000000000";
google_ad_width = 336;
google_ad_height = 280;
google_ad_format = "336x280_as";
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>
7.go to edit html-->click expand widgets
8. find
Code:
<div class='post-body entry-content'>
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
hope this helps, ask me if u face any difficulties
nikhil88