ffffffffffffffffffffffffff
ou can alter the text manually in your HTML too. To do this go to Template > Edit HTML > Search for
jump-link and find the following code<b:if cond='data:post.hasJumpLink'>
<div class='jump-link'>
<a expr:href='data:post.url + "#more"' expr:title='data:post.title'>
<data:post.jumpText/>
</a>
</div>
</b:if>
Change
<data:post.jumpText/> to whatever you want to appear like Read More or Continue Reading for example. Save your template.How to show post title in the jump link text
To add the title of the post after the read more text go to Template > Edit HTML > Format Template. Search for
jump-link and find the following code<b:if cond='data:post.hasJumpLink'>
<div class='jump-link'>
<a expr:href='data:post.url + "#more"' expr:title='data:post.title'>
<data:post.jumpText/>
</a>
</div>
</b:if>
Add
<data:post.title /> after <data:post.jumpText/> so it looks like<b:if cond='data:post.hasJumpLink'>
<div class='jump-link'>
<a expr:href='data:post.url + "#more"' expr:title='data:post.title'>
<data:post.jumpText/> <data:post.title />
</a>
</div>
</b:if>
Save your template

Remove the auto-jump to after jump-break
After clicking “read more”, the page reloads and jumps to the line after the jump-break. If you want to remove this so it loads the post normally, go to Template > Edit HTML > Search for
jump-link and find the following code<b:if cond='data:post.hasJumpLink'>
<div class='jump-link'>
<a expr:href='data:post.url + "#more"' expr:title='data:post.title'>
<data:post.jumpText/>
</a>
</div>
</b:if>
Remove
+ "#more" so you are left with the following code…<b:if cond='data:post.hasJumpLink'>
<div class='jump-link'>
<a expr:href='data:post.url' expr:title='data:post.title'>
<data:post.jumpText/>
</a>
</div>
</b:if>
Save your template.
Add image, icon or button instead of read more link
There’s quite a few ways to do this, but here is a really simply way. Go to Template > Edit HTML > Search for
jump-link and find the following code<b:if cond='data:post.hasJumpLink'>
<div class='jump-link'>
<a expr:href='data:post.url + "#more"' expr:title='data:post.title'>
<data:post.jumpText/>
</a>








