Moonlit
07-04-2003, 10:36 PM
I'm having trouble getting rid of the underlines for links. Someone mentioned this: Is there DIV/CSS code around them that would keep them underlined?....I don't know how I could tell if there was a code around it.
|
View Full Version : Links Moonlit 07-04-2003, 10:36 PM I'm having trouble getting rid of the underlines for links. Someone mentioned this: Is there DIV/CSS code around them that would keep them underlined?....I don't know how I could tell if there was a code around it. The master 07-04-2003, 10:39 PM want to get rid of your underlined links? this code should do it: <style type="text/css"> A:link {text-decoration:none; } A:visited {text-decoration:none; } </style> Or go to http://www.lissaexplains.com/css2.shtml#underline top of page. Moonlit 07-04-2003, 10:56 PM Yeah...that's similar to the code I used before. It doesn't work. And neither does changing the mouseover color of the links. I don't know why.... Moonlit 07-04-2003, 10:59 PM Maybe I should clerify. Here's the problem: I can get rid of most of the underlines on links...except the top two. I can't get any of the mouseover colors to work. You can click my link to see what I mean...maybe that will help you see what I mean. pb&j 07-05-2003, 07:13 AM on the first two links, you have the UNDERLINE tags around them causing the underline effect... <u><font color="#990099"><span style="font-size:14">Dreams</span></font></u> |