What’s the link to your page? It can be helpful to see this style-sheet in use so we can see what’s broken.
Also, try formatting the CSS with spaces after all “;” characters and before all “{}” characters. That could be causing some issues. As in
a:link {
text-decoration:underline;
color:#eee;
border:none;
}
But, most importantly, give us a link to the page that’s causing problems, otherwise we can really diagnose
i dont see the settings you say you added in that stylesheet anywhere
boober- i changed it after taking mycombs’ advice.
right now its at
a {
color: #2175BC;
text-decoration: none;
}
a:hover {
text-decoration:underline; color: #FF7400;
}
but still no change….hmmmm
find and delete (or edit) this line:
a:link,a:active,a:visited,a:hover{text-decoration:none;color:#000;border:none;}
hey haochi! what i did was delete it to see the effects.
but nothing had changed. is it possible that the link style could be overwritten?
Well, you are supposed to keep
a{color:#2175BC;text-decoration:none;}
a:hover{text-decoration:underline;color:#FF7400;}
and delete
a:link,a:active,a:visited,a:hover{text-decoration:none; color:#000;border:none;}
THANKS. actually i had 2 of
a:link,a:active,a:visited,a:hover{text-decoration:none; color:#000;border:none;}
in the css style sheet. i found it. thanks haochi!