-->

Remove Home Page Link From Blog Header Image (Blogger)

The Header image of  blog is linked by default with the blog home page. Readers can easily come back at home position clicking header image from post or page. You can remove header link with blog home page in few steps.
1. Log into Blogger Dashboard.
2. Enter Design Section>>Edit HTML>>Expand Widget Templates.
3. Now find out given codes in html section -



<div class='titlewrapper'>
    <h1 class='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>
    </h1>
  </div>


Now replace entire codes with (given below codes) -
<div class='titlewrapper'>
    <h1 class='title'>
      <data:title/>
    </h1>
  </div>
Take preview and save your template to finish the process. Now, header is no more linked with blog home page.

Baca juga

Post a Comment