Changing Blog Title with a header The standard title of a blog on blogspot is what is on the header. To determine the header title could be through the "Settings" on page dashboard. Headers are also displayed on the blog page. But sometimes, we need for the blog title on the title bar is different from that displayed in the header.
Make what? it' also influential on the search results in search engines like google which will obviously impact on the level of "fame", so the number of visitors who visit will change. Okey, I would like to reference that how the blog title not the same as the header title:
1. On the dashboard page, please click the "Design / Design" and click "Edit HTML"
2. Put a check / tick the box "Expand Widget Templates" which I forgot to use Indonesian words. But definitely to tick the box on top right corner of the text area.
3. Block all text in the box, and copy it into notepad. This is to avoid editing error, so that later if one live copy and paste anymore.
4. Search codes: <data:blog.pageTitle/> </ title>. I'll easily push "CTRL" + "F" on your keyboard and type in the code. Remove and replace that code with the desired title. And click "SAVE" If you want the title of each post so the title of each page, can use the following ways: Remove code:
<title> <data:blog.pageTitle/> </ title> </p>
and replace with the code below:
<b:if cond=’data:pageType == "index"’>
<title><data:blog.title/><&/title>
&
lt;b:else/>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>
So,Good Luck!