SEO TOOLS JUNCTION

Showing posts with label seo. Show all posts
Showing posts with label seo. Show all posts

How to get your blog on the first page of Google search results?




How to let search engines find your blog ?


You can make it easier for people to find your blog on search engines like Google and Bing by:
  • Listing your blog on search engines
  • Using keywords throughout your site so it shows up higher in search results



1. Log in to your dashboard--> layout- -> Edit HTML
2. Click on "Expand Widget Templates"
3. Scroll down to where you see this:
<data:post.body/>
4. Now replace above code with below code.
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<div expr:id='&quot;summary&quot; + data:post.id'/>
<script type='text/javascript'>
var blogID = &quot;5375156378107831274&quot;;
function retriveSummaryPost<data:post.id/>(json){document.getElementById(&quot;summary<data:post.id/>&quot;).innerHTML
= json.entry.summary.$t + &quot;...&quot;}
function createSummaryPost<data:post.id/>(POSTID){ var script =
document.createElement(&quot;script&quot;);
script.src = &quot;http://www.blogger.com/feeds/&quot;+blogID+&quot;/posts/summary/&quot;+POSTID+&quot;?alt=json-in-script&amp;callback=retriveSummaryPost<data:post.id/>&quot;;
script.type = &quot;text/javascript&quot;; document.getElementsByTagName(&#39;head&#39;)[0].appendChild(script);
}
</script>
<script type='text/javascript'>
createSummaryPost<data:post.id/>(&quot;<data:post.id/>&quot;);
</script>
<span class='rmlink' style='float:right'><a expr:href='data:post.url'>--&gt;d?c ti?p...</a></span>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<div id='post_body'><data:post.body/></div>
</b:if>

NOTE : You Must Replace 5375156378107831274 with your real blog ID.
5. Now save your template and you are done.




How To Add Two Columns to blogger Sidebar


1. Log in to your dashboard--> layout- -> Edit HTML
2. Scroll down to where you see like this code.
<div id='sidebar-wrapper'>
  <b:section class='sidebar' id='sidebar' preferred='yes'>
<b:widget id='Feed2' locked='false' title='Recent Posts' type='Feed'/>
<b:widget id='Label99' locked='false' title='Labels' type='Label'/>
</b:section>
  </div>
3. Now add below code between  </b:section>  and  </div>  .

<b:section class='sidebar' id='magazine-left4' showaddelement='yes'>
<b:widget id='Text514' locked='false' title='Column 1' type='Text'/>
</b:section>
<b:section class='sidebar' id='magazine-right4' showaddelement='yes'>
<b:widget id='Text524' locked='false' title='Column 2' type='Text'/>
</b:section>
<div style="clear: both;"></div>
Look at the picture below.
4. Now Find below code.
]]></b:skin>
5. Add below code before  ]]></b:skin>  tag.
#magazine-left4 {
width: 49%;
float: left;
}
#magazine-right4 {
width: 49%;
float: right;
}
Note : You can change values of width,as your choice.
6. Now save your template and you are done.It look like this.