Gossamer Forum
Home : General : Chit Chat :

Re: [Unquick] CSS help.

Quote Reply
Re: [Unquick] CSS help. In reply to
We use classes all of the time. simply do something like


A:hover {
color: #cc0000;
text-decoration: none;
font-weight: bold;
font-family: arial,verdana,helvetica,sans-serif;
}

A:hover.bottom {
color: #cc0000;
text-decoration: none;
font-weight: normal;
font-family: arial,verdana,helvetica,sans-serif;
}


And then in your link do <A HREF CLASS="bottom" blah blah>

Sometimes I'll do everything in a class such as:

A:hover.not { blah }

A:hover.bottom { blah }

to eliminate any kind of whackiness.

I use software called "TopStyle" which is really cool for making stylesheets.

Good Luck.
Subject Author Views Date
Thread CSS help. Unquick 7582 Mar 28, 2003, 10:04 AM
Thread Re: [Unquick] CSS help.
hennagaijin 7415 Mar 28, 2003, 12:22 PM
Thread Re: [hennagaijin] CSS help.
Unquick 7370 Mar 28, 2003, 12:26 PM
Post Re: [Unquick] CSS help.
hennagaijin 7308 Mar 28, 2003, 12:39 PM
Post Re: [Unquick] CSS help.
Chaz 7319 Mar 28, 2003, 1:52 PM
Thread Re: [Unquick] CSS help.
Watts 7318 Mar 28, 2003, 3:53 PM
Post Re: [Watts] CSS help.
Unquick 7336 Mar 28, 2003, 3:57 PM