January 1st, 2004, 08:51 PM
|
#3 (permalink)
|
| Ultimate Member
Join Date: Nov 2002 Location: Hershey, PA
Posts: 1,349
|
quite simple.
[1] Go to the part in the page where you want to 'scroll to'. Insert some HTML code as follows, using a unique 'name': Code: <a name="Downloads">Download section here!</a>
[2] So, now.. if you want to point a LINK to that anchor (a), you point it to the 'name' you gave it.
If you want to link from the SAME page, you don't need a full URL: Code: <a href="#Downloads">Link to my download section</a> If you want to link from a a DIFFERENT page, then you must use a full URL: Code: <a href="http://www.raincube.com/index.htm#Downloads">Link to my download section</a> - rp |
| |