You can create page jumps with just a little bit of code…
Firstly, find the section of content you wish to jump to and give this an ID. Ideally, you want to wrap the content in a div like this:
<div id="jump">Your content here</div>
Notice how we have given the div an ID of “jump”… Then add a link to where you want the content to jump from like this:
<a href="#jump">Your link description here</a>
So the link with the ID “jump” will jump to the content you have wrapped in a “jump” ID. You can use this markup as much as you want, just ensure you use a different ID for each one as the ID should be unique and only used once per page.