Is this possible without using jQuery or javascript? I've tried to relatively position the anchor tag, and then use top: -30px, but that doesn't seem to matter. The page always jumps to where the anchor mark-up is rendered, not to where CSS moves it. Any suggestions?
The solution:
Put the link inside of the element you're targeting. In the parent element (position:relative), on the named anchor (position:absolute; top:-30px). Works like a charm.
<ul><li><a name="comment1"></a>blah</li><li><a name="comment2"></a>blah</li><li><a name="comment3"></a>blah</li></ul>. Each list item is styled so they're right on top of each other. I need a way to make #comment2 jump to the correct spot, only 30px higher on the page. – Bjork24 Nov 1 '11 at 4:39