Don’t get me wrong I’m not saying that using free Blogger Templates are wrong after I use with customization still ongoing a template powered by +Mohammad Mustafa Ahmedzai. You need to know how to SEO your blog’s template and add or delete some codes that will either make your blogspot blog SEO-friendly or stop it from being anti-SEO.
Guide to template SEO customization
1. Learn the Basics of SEO in Blogger
2. Optimize your title tags
Find <title><data:blog.pageTitle/></title>
And paste this code
<b:if cond=’data:blog.pageType == "item"’>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
3. SEO Post titles
<h3 class=’post-title’>
<b:if cond=’data:post.link’>
<a expr:href=’data:post.link’><data:post.title/></a>
<b:else/>
<b:if cond=’data:post.url’>
<a expr:href=’data:post.url’><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
Also search for this code <h3> <data:title/> </h3> and replace with h3
4. SEO your template to be Robot and web crawler friendly
On edit template paste the below code in it
<meta content=’all’ name=’robots’/>
<meta content=’global’ name=’distribution’/>
<meta content=’5 days’ name=’revisit’/>
<meta content=’5 days’ name=’revisit-after’/>
<meta content=’document’ name=’resource-type’/>
<meta content=’all’ name=’audience’/>
<meta content=’general’ name=’rating’/>
<meta content=’index, follow’ name=’robots’/>
<meta content=’en’ name=’language’/>
<meta content=’IN’ name=’country’/>
<meta content=’YOUR NAME HERE’ name=’Author’/>
<meta content=’YOUR EMAIL ID’ name=’Email’/>
<meta content=’blogger’ name=’generator’/>
<b:include data=’blog’ name=’all-head-content’/>
<link href=’ https://plus.google.com /u/0/YOUR ID/’ rel=’author’/>
5. SEO your Robots.txt
User-agent: Mediapartners-Google
Disallow:
User-agent: *
Disallow: /search/
Disallow: /search?
Disallow: /search?q=*
Disallow: /*?updated-max=*
Disallow: /p/about.html
Disallow: /p/privacy.html
Allow: /
Sitemap: http://www.yoursitename.com/atom.xml?redirect=false&start- index=1&max-results=500
6. Muti-Purpose Script
– Makes all your external links as nofollow.
– It automatically build image alt and title tagging.
– Open all external links in a separate window.
find </head> and paste the below code above </head>
<script src=’ http://ajax.googleapis.com /ajax/libs/jquery/1.3.2 /jquery.min.js’ type=’text/javascript’/>
<script type=’text/javascript’>//<![CDATA[
jQuery(‘a’).each(function(){// Let’s make external links open in a new tab. var href=jQuery(this).attr(‘href’);if (typeof href !=’undefined’ && href !=”” && (href.indexOf(‘http://’) !=-1 || href.indexOf(‘https://’) !=-1)&&href.indexOf(window.location.hostname)==-1){jQuery(this).attr(“target”, “_blank”);}});//]]></script>
<script type=’text/javascript’>//<![CDATA[
jQuery(‘a’).each(function(){// Let’s make external links nofollow. var href=jQuery(this).attr(‘href’);if (typeof href !=’undefined’ && href !=”” && (href.indexOf(‘http://’) !=-1 || href.indexOf(‘https://’) !=-1) && href.indexOf(window.location.hostname)==-1){jQuery(this).attr(“rel”, “nofollow”);}});//]]></script>
<script type=’text/javascript’>//<![CDATA[
$(document).ready(function(){$(‘img’).each(function(){var $img=$(this);var filename=$img.attr(‘src’) $img.attr(‘alt’, filename.substring((filename.lastIndexOf(‘/’))+1, filename.lastIndexOf(‘.’)));});});//]]></script>
That can get you started towards jumping in SERPS, if you apply this little search engine ranking for blogspot tips in your blog you’ll jump from 6 digit downwards in Alexa rankings. That is a positive ranking for you more traffic and more revenue. Happy tweaking, share with others!
I'm just getting into ClickMinded – Internet Marketing Training and I still need to learn a lot. With the tips you provided I'm sure I can generate more traffic and help me with my revenue.