Filled Under:

Optimization Tag Heading Into SEO In Blogspot

Go to the dashboard = >> = >> edit html design, do not forget to check expand widget template

Find the HTML code below


<h3 class='post-title entry-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'>

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

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

<b:else/>

<data:post.title/>

</b:if>

<b:else/>

<data:post.title/>

</b:if>

</b:if>

</h3>
<h3> Code and replace the tag </ h3> with <h2> and </ h2>

Once done then look at the HTML code below
<h3 class='mobile-index-title entry-title'>
<data:post.title/>
</h3>


Do the same with the previous step and change the tag code <h3> </ h3> with <h2> and </ h2>

The next step will find the HTML code below

<Group description="Post Title" selector="h3.post-title, h4, h3.post-title a"> 

Replace the above code with the code below

<Group description="Post Title" selector="h2.post-title, h4, h2.post-title a"> 

Find the code below

h3.post-title, h4 {
font: $(post.title.font);
color: $(post.title.text.color);
}

h3.post-title a {
font: $(post.title.font);
color: $(post.title.text.color);
}

h3.post-title a:hover {
color: $(link.hover.color);
text-decoration: underline;
}
 
almost the same as the previous step, change the tag to h2 h3 (in some cases there are some differences with the above code, find the equation that has / is not entirely the same)
To this point we have finished changing the post title heading tag on our blog. Next we'll change the heading tag blog widget.

Find the code below
<!-- only display title if it's non-empty -->
<b:if cond='data:title != &quot;&quot;'>
<h2 class='title'><data:title/></h2>
</b:if>
 
Replace <h2> and </ h2> into <h3> and </ h3>. Here is usually not just one code above. However, depending on how many widgets you use and change everything.
Further find the following code
 
<title><data:blog.pageTitle/></title> 
 
Replace a code below
 
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
 
FINISH!!!
 
Do not forget to save your work.





2 Comment:

Please comment here, do not be shy and feel free to leave comment here. Devote all your opinion. But don't spam.