Making basic adjustments in Blogger

Updated On 6/08/2014
Okay, today I am sharing with you some of the basic Blogger adjustments like making your header click able and removing blog name from post name. Initially, blogger header is not clickable in your home page.


But, before progressing to any changes to the code back up your blogger template - in case anything goes wrong. If you don't know how to do it check it Here: How to Backup Blogger Template

Make your Homepage Title Click-able

By default your blogger Blogger header is not a Link that's why it is not click-able. To make it click-able make it a link. 
Go to Blogger Template Editor(Template -> Edit HTML)  and find(Press Ctrl + F) this code: <b:includable id='title'>
Now Replace the following line of code

<b:includable id='title'>
  <b:if cond='data:blog.url == data:blog.homepageUrl'>
    <data:title/>
  <b:else/>
    <a expr:href='data:blog.homepageUrl'><data:title/></a>
  </b:if>
</b:includable>

with these:
 
Remove Blog Name from Post/Page Titles

By default your Blog Name is in the Post Title, and it looks like- YOUR-BLOG-NAME: Post-Title. This kind of naming is very bad for SEO, also Your post title becomes lengthy. Here is how it looks in the search engine result-
To remove your Blog Name from Post Name, open Blogger Template Editor(Template -> Edit HTML) and find this code: <title><data:blog.pageTitle/></title>

Now replace it with the code below
Updated On: 08/06/2014

No comments :