Can any one tell me what the code is for making a link jump to a certain part of the page? For example if someone clicks a link and the info they are looking for is 3/4th of the way down the page, what code would you use to jump them to that part of the page? Am I making any sense ?
At the point you want them to go to, you put this: <a name="blah"></a> To make them jump there, you make a link like this: <a href="#blah">go to blah</a> you can also call it from a different page like: <a href="http://www.domain.com/page.html#blah">go to blah</a>
What lorien said. You want to set up the "anchor" on the page where you want to direct to, then use the special href code to get there.