Make sure you identify the element you're linking to with an ID or NAME tag. Example:
HTML Code:
<div id="bottom"><p>Bottom Div</p></div>
So you're going to have to link to it like this:
HTML Code:
<a href="tophosts.html#bottom">Link</a>
The ID and/or NAME tag(s) must be in place in order for this kind of linking to work. Also, if you're making a mock menu but still want it to appear like links, you can just use a # (known as the hash or pound sign) in place of an actual URL. It will treat it like a link, but not actually call on new content.
HTML Code:
<a href="#">Mock Link</a>
Last edited by collyer_1; 03-14-2006 at 11:46 PM..
|