Hi Guys Please help with this little problem I have created a css with a:link { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px; color: #0000FF; text-decoration: none; } The rest of the page is using the other elements of the css, but i cant get rid of the underline. any ideas??
Have you tried simply, a { text-decoration: none; } Code (markup): As far as i am aware, a:link selects all the links that are unvisited. Therefore, the link in your case has prob been visited. If you insist on using a:link. Apply the same styles to, a:visited, a:active and a:hover. That may be the problem. nicangeli
RIght, a:link will not be inherited by a:hover or a:focus etc, but a by itself will be (unless you say something else for a specific pseudo element like a:hover...) and whatever comes last will usually have precedence, so start with the a and add the specials you want for stuff like :hover later.