How to add adsense ads inside Blogger blog posts or between blog posts


Adding Adsense in between blogger posts can increase your CTR.
CTR means"(the number of times your ad clicked) divided by (number of times it is shown).So,the more CTR you have,the more you earn...

There are more chances for the ads to be clicked when they are in the middle(blog posts) rather than at the sidebars(especially the right sidebar),footer,etc.

An other tip to get High CTR is to place adsense ad under the post title...

For now
To place adsense in blogger posts

1. Sign in to your blogger account -> dashboard and click on layout

2. Click on the Edit link in the "Blog Posts' column
A pop up window opens

Check the box next to 'Show ads between Posts


configure the ads,choose the format,colours,etc and save the changes

That's it! Now your adsense ads will show between blog posts

If you want to know how to add the adsense ads inside the blog post rather than between the post, follow this:-

1. Sign in to your blogger dashboard>layout>Edit html
Check the box next to 'Expand Widget Templates'

2. Scroll down the window till you see this code

<b:if cond='data:post.includeAd'>
<data:adEnd/>
<data:adCode/><data:adStart/>
</b:if>


3. Replace that code in the template with the below code

<b:if cond='data:blog.pageType
!= "item"'>
<b:if cond='data:post.includeAd'>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</b:if> </b:if>



4.Again,scroll down the template and find out data-post body tag( look at below screen shot)


and paste the below code just above that code{this will show ads above the post body}.If you want ads to show below the post,paste the code below that tag.


Code:

 <b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:post.includeAd'>
<data:adEnd/> <data:adCode/>
<data:adStart/> </b:if>
</b:if>
Done....

If you like this post then please leave a comment or follow this blog or subsrcibe to this blog via RSS
Thanks

Adsense Below Blogger post title

Many bloggers are wondering and trying to find that How to add Adsense below the blogger post title???
So i am now showing you the easiest way on how to add Adsense below post title in Blogger....


As you know that Google earnings depends upon your blog traffic and ad placement. One important place for adding adsense is below the post title.... There is more possibility to get clicks.

First of all login to your google adsense account and generate ad code

Now copy that code and put it in the box below and parse it..

Now Copy the parsed code
Login to blogger
-> Layout->>Edit HTML ->> expand the widget template
and find this code



<data:post.body/>
Replace it with the following


 <!-- http://blogger-new-widgets.blogspot.com Adsense Above Posts start -->
<b:if cond='data:blog.pageType == "item"'>
Put your parsed adsense code here
<br/>
</b:if>
<!-- http://blogger-new-widgets.blogspot.com Adsense Above Posts End -->
<data:post.body/>


You will see your ad appearing below the post title... ( this ad wont on Homepage and label pages )

happy earnings while enjoying blogging

If you like this post or you want to ask any question then please leave a comment
Thanks

Highlight Author's Comment in Blogger


This is a nice way to make your ( author's ) Comment different from all other comment that your readers left. Its is a very Interesting and useful Blogger tip..



1. Login to blogger, then choose "Layout --> Edit HTML". Don't forget to backup your template first.
2. Check the "Expand Widget Templates" box.
3. Copy this script and put it before ]]></b:skin> or copy to your CSS area.
.comment-body-author {
background: #E6E6E6; /* Background color*/
color: #000; /* Text color*/
border-top: 1px dotted #223344;border-bottom: 1px dotted #223344;border-left: 1px dotted #223344;border-right: 1px dotted #223344;
margin:0;
padding:0 0 0 20px; /* Posotion*/
}

4. Then find this code:

<dl id='comments-block'>
<b:loop values='data:post.comments' var='comment'>
<dt class='comment-author' expr:id='"comment-" + data:comment.id'>
<a expr:name='"comment-" + data:comment.id'/>
<b:if cond='data:comment.authorUrl'>
<a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a>
<b:else/>
<data:comment.author/>
</b:if>
said...
</dt>

<b:if cond='data:comment.author == data:post.author'>
<dd class='comment-body-author'>
<p><data:comment.body/></p>
</dd>
<b:else/>


<dd class='comment-body'>
<b:if cond='data:comment.isDeleted'>
<span class='deleted-comment'><data:comment.body/></span>
<b:else/>
<p><data:comment.body/></p>
</b:if>
</dd>

</b:if>

<dd class='comment-footer'>
<span class='comment-timestamp'>
<a expr:href='"#comment-" + data:comment.id' title='comment permalink'>
<data:comment.timestamp/>
</a>
<b:include data='comment' name='commentDeleteIcon'/>
</span>
</dd>
</b:loop>
</dl>


5. The orange color text is the code that you have to add to your script. The position must be right.
6. And then save your template


More about blogger tips

Adding Related post widget to blogger

With adding "Related Posts" at the end of each and every post in your blog is the best way to let your readers remain on your blog for some extra period of time...
I will show you how to add these related posts

Steps for Adding:
  1. Go to Layout >Edit HTML in your Blogger Dashboard.
  2. Back up your existing Template before making any changes!
  3. Make sure to check the "Expand Widget Templates" box.
  4. Search for the <head/> tag.
  5. Add the following code just before the <head/> tag.
    <style>
    #related-posts {
    float : left;
    width : 540px;
    margin-top:20px;
    margin-left : 5px;
    margin-bottom:20px;
    font : 11px Verdana;
    margin-bottom:10px;
    }
    #related-posts .widget {
    list-style-type : none;
    margin : 5px 0 5px 0;
    padding : 0;
    }
    #related-posts .widget h2, #related-posts h2 {
    color : #940f04;
    font-size : 20px;
    font-weight : normal;
    margin : 5px 7px 0;
    padding : 0 0 5px;
    }
    #related-posts a {
    color : #054474;
    font-size : 11px;
    text-decoration : none;
    }
    #related-posts a:hover {
    color : #054474;
    text-decoration : none;
    }
    #related-posts ul {
    border : medium none;
    margin : 10px;
    padding : 0;
    }
    #related-posts ul li {
    display : block;
    background : url("http://i299.photobucket.com/albums/mm297/zozuglogger/weed-bullet.gif") no-repeat 0 0;
    margin : 0;
    padding-top : 0;
    padding-right : 0;
    padding-bottom : 1px;
    padding-left : 16px;
    margin-bottom : 5px;
    line-height : 2em;
    border-bottom:1px dotted #cccccc;
    }
    </style>
    <script src='http://torrentmoon.com/javascripts/Related_posts_hack.js' type='text/javascript'/>

  6. Now search for <p><data:post.body/></p>. In some of the templates this code may look like this
    <div class='post-body>
    or
    <p><data:post.body/></p>
  7. Add the following code just beneath the code you just searched for.
    <b:if cond='data:blog.pageType == "item"'>
    <div id="related-posts">
    <font face='Arial' size='3'><b>Related Posts : </b></font><font color='#FFFFFF'><b:loop values='data:post.labels' var='label'><data:label.name/><b:if cond='data:label.isLast != "true"'>,</b:if><b:if cond='data:blog.pageType == "item"'>
    <script expr:src='"/feeds/posts/default/-/" + data:label.name + "?alt=json-in-script&callback=related_results_labels&max-results=5"' type='text/javascript'/></b:if></b:loop> </font>
    <script type='text/javascript'> removeRelatedDuplicates(); printRelatedLabels();
    </script>
    </div></b:if>

  8. Now Save your Template and you're done!
Editing/Customization:

In order to change the number of maximum related posts being displayed for each label, search for the code below (within the code given in step 7) and change the number "5" to any desired number.

max-results=5

Add Google Analytics to Blogger

Google Analytics is a powerful tool for anyone looking to do SEO. It allows you to track your visitors, see where they come from, how they got there, how much time they spend on your site and much more. Just follow these easy steps to add it to your blogger account:

  1. First of all you need to go ahead and sign up to http://www.google.com/analytics/ during the signup proccess you'll enter your Google Account information and Blog URL.
  2. When the sign up completesyou'll get some javascript code to add to your Blog, choose the "New Tracking Code (ga.js)"
  3. Copy this JavaScript code into the clipboard
  4. Login to your blogger account. Head over to the Layout Tab and Select "Edit HTML". Here you will see the HTML code for your template (be carefull here so you don't mess up your blog).
  5. Scroll down all the way to the bottom until you find the body tag. Paste the JavaScript code just before the body tag.
  6. Wait a couple of hours, then log back into the Google Analytics website and click on "Check Status" button. If it says that it can't find the code just try again latter, sometimes it takes a while.
  7. Finished!!!!.... All you have to do now is wait for your visitors to come and your stats to pile up.

If you like this post please leave a comment or subcribe to this blog via RSS or Email
Thanks

Getting Comments

Comments are the most important thing a blogger should get. Even a great blogger also need comments on their blogs as Comments make the posts valuable as it is proved that a post having alot of comments are more attracted by the readers than the posts having no comments on it.....
So start getting your comments on your blog posts.
I am providing you some tips about getting comments on your blog.
  1. Encourage readers to leave a comment
    You must encourage your reader to leave a comment about the post you have written. Just ask the reader at the end of your post to leave a comment or subscribe to your blog. This is a handy tool to get comments.

  2. Ask alot of Questions
    There is also a great way to make readers force to leave a comment is to as ask alot of question in your posts so that readers who read you blog are automatically forced and they would answer your questions as a comment.

  3. While Blog Walking leave comment on other's blog
    I mean to say that while you read other blogger's blog leave a comment on their blog, Obviously they would re-visit your blog and in reply leave a comment on your blog, Blogging is all about give and take so this is also a great way to get comments.

  4. Ask the readers about their experiences
    Ask your readers about their experiences in your blog's post and let them share their knowledge and experience with you.

  5. Try Replying Comments
    When someone leave a comment on your blog please try to reply him on time as some comment needs to be answered quickly. So answer every comment you get may be it grows into a discussion on your blog.
Hope you got those tips and now ready to apply them on your blog.

If you have any Question or any problem you can ask me i would love to help...
Please leave a comment if you like this post or subscribe to this blog via RSS or Email.
Thanks

3 Reasons of not making profit from google adsense:


  1. Low Traffic:The more traffic you have the more your blog or website will be profitable and more are the chances to get good profit, they are simply directly proportional......
    If you are not having good traffic, less percentage of people will click your ads and you would not be able to get good income from Google Adsense...
    So in the primary goals add this point too, " increasing traffic.."
    some tips i provide will help you increase your traffic
    Add a 'share on facebook' link to blog
    Submitting Url to major search engines
    Submit Blog to Blog Directories
    Blog Walking
    Getting Free traffic from Yahoo Answers
    Link Exchange
    Optimize blog title for better SEO
  2. Ads placed poorly:
    Ads not placed in a nice area can also hurt your earnings....
    below is a graph here the dark colours are the best position for your ad placement
    Generally Large Rectangle is the best performing ad so far....
    try to blend the colours with your blog so that readers click on them by considering them as content of your blog....


  3. The Topic/Theme or content of your blog isn't conducing to make you earn money on adsense
    This is a main point please try to write about a profitable topic that make you earn money. Simply if you want to add Adsense to your personal blog then for sure you would not be able to earn money with that....
    Try to find a profitable Keyword/ a profitable topic and write about it...

    here is the keyword tool see and find good keywords for your blog and write about them on your blog... Keyword Tool

If you liked this post please leave a comment or subscribe to this blog via RSS or Email



Getting readers for your blog from Yahoo Answers

Friends i wanted to share with you that you can also get alot readers and visitors from Yahoo Answers
I am having a yahoo id and i can use Yahoo answers... So simple. Now let me tell you how you can get visitors.... I simply know alot about Blogger and i use to search about question about blogger that people have asked recently, and then i use to answer them and leave an URL to my blog within that answer.
This is how i am now seeing that alot of visitors are refered by Yahoo answers...
So that is a nice tip, I wanted to share with you my friends

Keep blogging
Please if you liked this post please leave a comment or subscribe to this blog via RSS or Email.
Thanks