kintora20
02-28-2004, 02:17 PM
I totlaty forgot the code.. whats the code to make the underline thing under the link goaway?
thanks ^^
thanks ^^
|
View Full Version : Underline link kintora20 02-28-2004, 02:17 PM I totlaty forgot the code.. whats the code to make the underline thing under the link goaway? thanks ^^ nicholaslwest 02-28-2004, 02:48 PM Here's the code: <style type="text/css"> A:link {text-decoration:none; } A:visited {text-decoration:none; } </style> Have fun! Nick Makar 02-28-2004, 02:55 PM It's CSS: <style type="text/css"> A:link { text-decoration: <b>none</b>; color:#000000; } A:visited { text-decoration: underline; color:#000000; } A:active { text-decoration: underline overline; color:#000000; } A:hover { text-decoration: underline; color:#000000; } Put that in your head tag; you can change what you want your link to look like with the text-decoration. (none, underline, overline, underline overline) EDIT: Grr, I'm so slow, aren't I? Why can't you delete your posts? :\ kintora20 02-28-2004, 03:20 PM yippy, thanks guys :) pb&j 02-28-2004, 03:52 PM for the record... to affect all of the variations of links in one swoop... a {text-decoration:none;} |