View Full Version : CSS
Mr Macro
21-07-2007, 11:26 AM
How would i make it so the link is not underlined.I'm using:
A:link {
color: #993399;
}
A:visited {
color: #993399;
}
A:active {
color: #993399;
}
A:hover {
color: #993399;
}
a:link {
color: #993399;
text-decoration: none;
}
a:visited {
color: #993399;
text-decoration: none;
}
a:active {
color: #993399;
text-decoration: none;
}
a:hover {
color: #993399;
text-decoration: none;
}
Mr Macro
21-07-2007, 11:30 AM
Thanks, REP+
Eric30
21-07-2007, 11:44 AM
If you have the same for all three, just use
a {
color: #993399;
text-decoration: none;
}
Heinous
22-07-2007, 08:56 AM
If you have the same for all three, just use
a {
color: #993399;
text-decoration: none;
}
Wrong.
Want to hide these adverts? Register an account for free!
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.