How to index the items on a single page.
-
When I have a large static page with lots of section headings, how do I create a simple “jump to” menu at the top of the page. I want to list the section headings and then allow the reader to jump to a section by clicking on it in the list. (I am trying to avoid having more and more pages; I have searched the plugins but cannot find what I want.)
The blog I need help with is: (visible only to logged in users)
-
If you have HTML knowledge you can add id on your heading section.
Example:<h2 id="section-1">DERNIERE MINUTE</h2>
Then give link value “#section-1”. Example:<a href="#section-1">Go to DERNIERE MINUTE</a>
- The topic ‘How to index the items on a single page.’ is closed to new replies.