How To Change TITLE in Blogger
If you want to see your message title as the title of your page, change HTML in preferences in this way:
1. Find this string:
3.If you would like to show blog title after message title, just replace string 4 with:
1. Find this string:
<title><data:blog.pageTitle/></title>2.And replace with this strings:
<b:if cond='data:blog.pageType == "index"'> <title><data:blog.title/></title> <b:else/> <title><data:blog.pageName/></title> </b:if>
3.If you would like to show blog title after message title, just replace string 4 with:
<title><data:blog.pageName/> - <data:blog.title/></title>