Hi Tara, the way to do this is with HTML anchors, as described in Stefanie's link above. You do need to go into the HTML editor, though.
First, add the code in bold inside the header that you want to be the "destination":
<h2 id="UniqueIdentifier">Header title</h2>
The ID you add here must be unique to that header, so you will need a different one for each destination.
Second, you can create the link that will jump to the destination by adding this bolded code:
<a href="#UniqueIdentifier">This link</a> will scroll the page to the appropriate header title
The ID you add here must have a hash symbol before it, and it must match the ID you chose for that header.
This is only a good idea on long long pages; and usually it's a better idea to split the page up into separate sub-pages if that is possible.
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.