How to create a Read More on blogspot?
First, go to the Layout – Edit HTML. Click on Expand Widget Templates.
Then find the following code (you can use ctrl+f) :
<data:post.body/>
Then delete the code, replace with the following code:
<b:if cond=’data:blog.pageType == “item”‘>
<style>.fullpost{display:inline;}</style>
<p><data:post.body/></p>
<b:else/>
<style>.fullpost{display:none;}</style>
<data:post.body/>
<a expr:href=’data:post.url’>Read More</a>
</b:if>
Save your template. You can change Read More with Read Full, or other
The process to edit the HTML code for Read More is done.
Next is when you writing a post.
At the time of writing a post, you must add the following code :
<span class=”fullpost”> and </span> in your post (in the Edit HTML tab, not the Compose tab) with the following order:
<span class=”fullpost”>
Your post that hidden
</span>
For example, you write a post like this:
<span class=”fullpost”>
While this is the continuation paragraph of your posting. This paragraph is hidden. This paragraph will be visible if you click Read more link that has been available.
</span>
Its very simple and easy. Enjoy it!

