How to remove Jump Break in Blogger
After clicking “Read more >>” in a Blogger post, the page reloads and jumps to the line after the jump break. If you want to remove this so that it loads the post normally like before.
STEP 1: 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>
STEP 2: 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>
STEP 3: Save your template.