michael.r
09-11-2005, 04:23 PM
hi, does anyone know how to make my links change couler whne mouse scrolls over.
|
View Full Version : changing couler of font michael.r 09-11-2005, 04:23 PM hi, does anyone know how to make my links change couler whne mouse scrolls over. Luthien Rogue 09-11-2005, 04:27 PM I believe it's: <style type="text/css"> A:link {text-decoration:none; color:#ffffff } A:visited {text-decoration:none; color:#ffffff } A:hover { text-decoration: none; color:#ffffff; } </style> between the <head> tags. Just replace "ffffff" with the hex colours desired. "Hover" is the one you're talking about. michael.r 09-11-2005, 04:33 PM hi, thanks for that worked like a charm. Luthien Rogue 09-11-2005, 04:40 PM No problem. ^_^ MaGiCSuN 09-11-2005, 05:43 PM for future reference: www.lissaexplains.com/css.shtml Love, Mirna Greywing 09-11-2005, 08:35 PM In addition to that. Remember LoVe/HAte a:link a:visted a:hover a:active Or if all your substitutes are the same you can just use. a { define your attributes here } |