Move Adsense to Below Post Title : How to Add Adsense Ads Below Title in Blogger

Here is way how you can add Adsense ads below title in your blog, just follow the steps below to do it.
Google Adsense
Step 1: Go to Template and click on edit HTML -  Expand Widget Templates and look for this piece of code: I have just colored it for better understand.

<b:if cond='data:post.includeAd'>
          <b:if cond='data:post.isFirstPost'>
            <data:defaultAdEnd/>
          <b:else/>
            <data:adEnd/>
          </b:if>
          <div class='inline-ad'>
            <data:adCode/>
          </div>
          <data:adStart/>
        </b:if>


Step 2: Cut the code

Step 3: Then find the below code

<div class='post-header'>
    <div class='post-header-line-1'/>
    </div>

 
Step 4: Then paste the code you have cut, just below the </div>
It will be look like this

<div class='post-header'>
    <div class='post-header-line-1'/>
    </div>
<b:if cond='data:post.includeAd'>
          <b:if cond='data:post.isFirstPost'>
            <data:defaultAdEnd/>
          <b:else/>
            <data:adEnd/>
          </b:if>
          <div class='inline-ad'>
            <data:adCode/>
          </div>
          <data:adStart/>
        </b:if>


Thats all, now adsense will show ads on the top of your post and below the tiltle of the post

Comments