Linking to text within a page

R

Robin

I want to link from a list to a description on the same
page. I know it must be simple - but I can't figure it
out. Say for an example - FAQ has the list of questions -
then you click on the question and it jumps down to the
answer on the page (then there is a "top" link to take
you back up.

Help - Please - I would really appreciate it.
 
W

wp

Create bookmarks.
For top of page create a hyperlink with-in the page and bookmark it #TOP.
Here's what I use:
Top Of Page
Go back
<a TARGET="_top" HREF="#top">Top Of Page</a><br>
<a HREF="javascript:history.go(-1)" TARGET="_top">Go back</a>
You don't have to code it in, just insert it as an HTML component, copy an
paste wherever you need it.
 
Top