How to Combine Two Adsense Ads side by side in Blogger

If you want to place your two adsense ad code combine side by side for getting maximum revenue than you can easily do that for applying a simple html table code.
 Every Person want to earn money through internet and google adsense is one of the best choice for webmaster. If you have good ctr in adsense than more money can be banked in. Now Question is How Can I Increase CTR in Google Adsense. so if you add your adsense code combine with side by side in blogger or any webpage than your income are increasing. This code mostly place on Below page title or footer for getting maximum exposure. Example  as below image. 
Combine Two Adsense Ads
so this is how your ads will look when you combined together side by side.  

How to Combine Two AdSense Ads Side by Side in Blogger ?

Now here I will give you simple one code combine ad.
  • Go to Blogger.com and sign in with your username and password
  • Click on Templates >Edit HTML 
Now check mark Expand Widget Templates and Press Ctrl + F and search for<data:post.body/> now if you want to display ads below post title than paste below code above this searched tag or if you wanna show ads in your post footer than paste it below the searched tag.

<table width="600" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="300" style="padding: 5px;" align="center">
ADSENSE CODE 1
</td>
<td width="300" style="padding: 5px;" align="left">
ADSENSE CODE 2
</td>
</tr>
</table>
  1. Now you just need to paste the two adsense code where it is mentioned "Adsense Code 1" and "Adsense code 2".OF 300 X 250 SIZE
  2. Important You will have to parsed the adsense code so that it can be accepted in the blogger template so you just need to use Google adsense parser tool and get modified code and paste it there.
 if you want to add above code only on Post page not on home page than paste below code

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<table width="620" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="300" style="padding: 5px;" align="center">
ADSENSE CODE 1
</td>
<td width="300" style="padding: 5px;" align="left">
ADSENSE CODE 2
</td>
</tr>
</table>
</b:if>