After creating this blog, one thing that has bothered me for a while is that title of every page and post of my blog starts with the blog name. In case of my blog, title of each post starts with TechMumbai:
It still is worse for SEO than just the post title.
If you too are sick of this problem, you can use this simple trick to change the title to the default.
You just need to do a simple edit on HTML of your template.
Follow these simple steps -
1 - Log in to your Blogger account.
2 - Click On Template
3 - Click On Edit HTML
4 - Select "Expand Widget Templates".
5 -Then search for -
<title><data:blog.pageTitle/></title>
6 - And replace it with -
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
7 - Click on Save Template.
Done !!! Now check out your blog !!!
Post a Comment