I want to jump to a title within my blog. I have a page with introduction text where I want links to another location within that page (my blog posts).
Normally this is no problem and I use a Jump Page code. But, in this case I’ve used the Avia editor to put a BLOG object below the text object and I don’t know how to jump to a title within the BLOG object Avia placed on the page.
Currently I have a work-around. Each blog entry is linked in the introductory text and then pulls up a new page with just that blog item.
The page in question is https://www.therapyhelpcenter.com/successstories/.
The Avia Layout editor for this page has a TEXT box at the top, a LINE object for separation, then a BLOG object that lists my posts. Again, I want to be able to jump from references in the TEXT box to titles within the BLOG posts inside the BLOG object.
Hi davevi!
Your trying to jump to each of your articles with a link inside the page correct? The articles do not have IDs so without adding them in manually you can try adding this to a codeblock element in your page.
<a onclick = "var offset = jQuery('.post-3199').offset(); window.scrollTo(0, offset.top);">Click me</a>
And then change “3199” to the ID of the post you want to link to.
Cheers!
Elliott