I would like to add a "skip to part B" in the contact Page. I can change the contact template if need be, as it is used only for this one Page. How do I do this?
I would like to add a "skip to part B" in the contact Page. I can change the contact template if need be, as it is used only for this one Page. How do I do this?
Try this
<h2>Part A</a>
<p><a href="#part_b">Skip to Part B</p>
....
....
....
....
....
....
<a id="part_b"></a>
<h2>Part B</h2>
...
...
...
...
...
...Just add a link ID? I didn't know you could do that with links! Thanks so much.
Cathy
You don't even really need to do that.
Instead of
<a id="part_b"></a>
<h2>Part B</h2>
Try just this:
<h2 id="part_b">Part B</h2>
The link in the TOC itself will remain the same. You can create a link to any ID in the page this way.
thank you Otto, and MFields. :)
This topic has been closed to new replies.