PDA

View Full Version : Jump to a point in the same page with CSS


Daethian
11-21-2005, 12:29 AM
I've been using frames to display my poetry. The menu was in one frame and the poetry in the main frame. When you clicked on the name of the poem in the menu it would jump to that poem in the main frame. I have my content out of the frames but I can't get it to jump to the proper poem. Is this possible with CSS? I'm very novice at CSS, attempting to teach myself.

If you want to see the page I'm working on I have it here:
www.foreverpurple.com/poetrypage.html

I can't find a way to display the poems without the < pre> tags either.

Pennimus
11-21-2005, 12:39 AM
You're name tags shouldn't have # in front of them.

Daethian
11-21-2005, 04:30 AM
That just reloaded to the top of the page.

_Aerospace_Eng_
11-21-2005, 06:16 AM
He said your names, not your links. For example this anchor
<a name="#Digital">Digital Image</a>
Should be
<a name="digital" id="digital">Digital Image</a>
Your link to digital would be
<a href="#digital">Digital Image</a>
Also names are case sensitive.

Daethian
11-22-2005, 02:24 AM
oops...sorry about that..... I'll try it again the right way as soon as I'm able. :o

Daethian
11-23-2005, 11:18 PM
That worked...thanks again for the help :thumbsup: