What will this alteration do? Basically if you look into your blog post title on the top of the browser, it will normally display as YourBlogName: BlogTitle. Well, after we alter some coding in the file, the blog post title will change to just BlogTitle, which the YourBlogName will disappear. In Search Engine Optimization perspective, this changes will helps to improve SEO merit.
How to Change Blog Titles for SEO
1. Log in to your Blogger Dashboard and go to Template > Edit HTML
2. Find (CTRL + F) this code:
<title><data:blog.pageTitle/></title>3. Replace the code above with this one:
<b:if cond='data:blog.pageType == "item"'>4.Click Save Template and you are done.
<title><data:blog.pageName/> |<data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title> </b:if>