Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Class selector question Re: Class selector question

#50013
cssgirl
Participant

This I think, will do the trick, change to this in CSS:

Code:
a:link.buttons {
styles for buttons
}

Just throwing the class buttons on the a won’t override it because you’ve defined them all to be one way. You will have to be very specific in the CSS to get your buttons class to override the normal settings. Since you defined a:link to be one way, you will have to use a:link.buttons in the CSS to override it.