I hope it's okay if I jump in here.

Typically, to code links in CSS you'd use colons after the "a", and in LVHA (link, visited, hover, active) order. For example,

#tabmenu a:link {
whatever
}

#tabmenu a:visited {
whatever
}

#tabmenu a:hover {
whatever
}

#tabmenu a:active {
whatever
}

The a:active will be what determines how the link looks when a user is on that page.

It looks like you were trying to define classes for the links? The colon is used with pseudoclasses as in the info I gave you above.

HTH,
Leslie Riggs

john wrote:

Isabel,

Forgive me, but could you please clarify your suggestion? I tried moving the #tabmenu a.active code up one, but it didn't do anything. I'm really a newbie with CSS, so please bear with me.

~john
_________________________
Dr. Zeus Web Development
http://www.DrZeus.net
"content without clutter"

****************************************************** The discussion list for http://webstandardsgroup.org/

Proud presenters of Web Essentials 04 http://we04.com/
Web standards, accessibility, inspiration, knowledge
To be held in Sydney, September 30 and October 1, 2004

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************



Reply via email to