aLemonfor4
04-07-2006, 06:25 AM
i know it's possible to change the color of your links and even once they have been visited, but there is another code for a 'active' link. how does that work?
|
View Full Version : links aLemonfor4 04-07-2006, 06:25 AM i know it's possible to change the color of your links and even once they have been visited, but there is another code for a 'active' link. how does that work? Lt_Rick_Hunter 04-07-2006, 07:13 AM Haven't really looked into it myself, but here is a good source for all sorts of tagging information that will give you the tags to play around with. I'm pretty sure I saw it in there last time I looked something up. It will be somewhere in the "Links" or "attributes" section under it. Hope this helps! :) :tired: http://www.htmlgoodies.com/beyond/reference/article.php/3472851 Paco 04-07-2006, 08:22 AM You could try doing it with css <style type="text/css"> A:link { text-decoration: value; [underline, overline, underline overline, line-through, blink, none] color:#000000; } A:visited { text-decoration: value; [underline, overline, underline overline, line-through, blink, none] color:#000000; } A:active { text-decoration: value; [underline, overline, underline overline, line-through, blink, none] color:#000000; } A:hover { text-decoration: value; [underline, overline, underline overline, line-through, blink, none] color:#000000; </style> You just need to change the color and the text-decoration on each one, then put that between <head> and </head> |