Saturday, April 13, 2013

How to Change/Customize/Handle Page specific Title of a page in Blogger

When you visits any page of your blog you can see that page Title remains same on every page that is the Title of your Blog which is default set by blogger.
So with the help of this tutorial you can change this default setting and can show page specific Title on your blog.

Step 1: Goto Template and click on Edit Html

Step 2:Search following code in html template
 <title><data:blog.pageTitle/></title>  

Step 3:Replace searched code with following code
 <b:if cond='data:blog.pageType == &quot;index&quot;'>  
 <title><data:blog.title/></title>  
 <b:else/>  
 <title><data:blog.pageName/> : <data:blog.title/></title>  
 </b:if>  
or  with this code
 <b:if cond='data:blog.pageType == &quot;index&quot;'>  
 <title><data:blog.title/></title>  
 <b:else/>  
 <title><data:blog.pageName/></title>  
 </b:if>  

Step 4: Click Save template and you are done with it.
to check it....view any of your previous post

No comments:

Popular Posts