October 28, 2019

Remove Links from Header and Post Title in Blogger

Advertisements


Follow These Steps To Remove Header Link

1. Go to Blogger >>Theme >> Edit HTML

2. Click anywhere in the HTML codes and Press Ctrl+F   

3. Now search for below  code of lines



<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>

4. Replace above Code with below Code of lines


<div class='titlewrapper'>

  <h1 class='title'>

  <data:title/>

  </h1>

  </div> 
5. Click to save theme. Now You have successfully removed Header link in blogger



Follow These Steps To Remove Link from Post Titles in Blogger

1. Go to Blogger >>Theme >> Edit HTML

2. Click anywhere in the HTML codes and Press Ctrl+F   

3. Now search for below  code of lines

<h3 class='post-title'>

  <b:if cond='data:post.link'>

  <a expr:href='data:post.link'><data:post.title/></a>

  <b:else/>

  <b:if cond='data:post.url'>

  <a expr:href='data:post.url'><data:post.title/></a>

  <b:else/>

  <data:post.title/>

  </b:if>

  </h3>

  </b:if>
4. Replace above Code with below Code of lines


 <h3 class='post-title'>

  <b:if cond='data:post.link'>

  <a expr:href='data:post.link'><data:post.title/></a>

  <b:else/>

  <b:if cond='data:post.url'>

  <data:post.title/>

  </b:if>

  </h3>

  </b:if>
5. Click to save theme. Now You have successfully removed Header link in blogger

Now go to your blog and check if Links in Header and Post Titles has been removed or not in you Blogger Blogspot.





Share This Post To Social Network





0 Comments:

Post a Comment