How to Link Blogger Header to Another Site

As you can see in most times, your template header title links to your blogger blog that template has been applied. This tutorial explains how to link your blogger site header to another site you like.
Follow the steps given below to link blogger header to other site.
1.Login to your Blogger account and go to "Edit HTML" of your blog.
2.Scroll down to where you see this (or use Ctrl+F to find that 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>
Blogger Edit HTML
3.Replace above code with below code:
<b:includable id='title'>
  <a href='LINK_OF_YOUR_ANOTHER_SITE'><data:title/></a>
</b:includable>
NOTE : Replace 'LINK_OF_YOUR_ANOTHER_SITE' with actual URL of your another site and save your template

Post a Comment

0 Comments