Recently, I have noticed that I have the "Read More..." text link on my static page. It is annoying me because there is nothing with that link when we click on it. So, I decided to take a look at it to see if I can remove it. It turned out that it is easy to remove that "Read More..." text link.
In this post, I'll show you how I made that change. You can follow what I did on your blog.
1. Login to your account --> Design --> Edit HTML2. Click on "Download Full Template" to backup your template.
3. Check "Expand Widget Templates"
4. Search for
<b:if cond='data:blog.pageType != "item"'> <a expr:href='data:post.url'><span style='float:left; ><b>Read More...</b></span></a> </b:if>5. Change it to
<b:if cond='data:blog.pageType == "static_page"'>
<b:else/>
<b:if cond='data:blog.pageType == "index"'>
<a expr:href='data:post.url'><span style='float:left; ><b>Read more... </b></span></a>
</b:if>
</b:if>
In case, you have that issue, hope it can help you.

0 comments:
Why not leave a comment? No matter what, I'd love to hear from you!
Post a Comment