PDA

View Full Version : Link Scrollers?


thickandthin
09-01-2002, 11:59 PM
Hello everyone I need help I have a page thats really long and I've seen somewhere that you put links at the top of your page and it scrolls down to that place Thanks, Alessandro

murphyz
09-02-2002, 12:04 PM
For this you could try named anchors so you can link to somewhere on the page.

Put an anchor:
<a name="NAME">for each part of text you want to link to.</a>
Change NAME to whatever you want the anchor to be called.

Then place links at the top:
<a href="#NAME">Text to act as hypertext</a>

It may be an idea to have 'Back to top' links throughout the document too.

Mxx