moises911
05-16-2004, 12:27 AM
How can i change the color of links?
|
View Full Version : how can i... moises911 05-16-2004, 12:27 AM How can i change the color of links? oincubusx 05-16-2004, 12:44 AM do you want HTML or CSS to do it? moises911 05-16-2004, 12:46 AM html please moises911 05-16-2004, 12:51 AM Hello? :angel: Valkyrie 05-16-2004, 12:56 AM I think its better do it with CSS: <style> A:link {text-decoration: none; color: #000000;} A:visited {text-decoration: none; color: #000000;} A:hover {text-decoration: line-through; color: #000000;} </style> Replace the stuff in bold and just put in your own colors. |