How to Delete Link from header and post title.
1- Remove Header Link
* First go to your blogger Dashbaord.
* Now click in design tab and edit HTML.
* Now click in small box to expand your blogger Template.
* Scroll down and find below code --->>>
* Replace above code with below code--->>>>1- Remove Header Link
* First go to your blogger Dashbaord.
* Now click in design tab and edit HTML.
* Now click in small box to expand your blogger Template.
* Scroll down and find below code --->>>
<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>
<div class='titlewrapper'> <h1 class='title'>
<data:title/>
</h1>
</div>
2-How to Remove link From Post Title
* First go to your blogger Dashbaord.
* Now click in design tab and edit HTML.
* Now click in small box to expand your blogger Template.
* Scroll down and find below code --->>>
<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>
<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>
0 Responses So Far: