CSS/How to remove link colors?

Solved
alexou1984 Posted messages 406 Status Member -  
 Tonio -
Hello,

I can't seem to prevent the links on my site from being colored purple or blue. I've specified the following code:

a {text-decoration:none}

I don't understand. Thank you in advance.
Configuration: Windows XP Internet Explorer 7.0

3 answers

  1. Marco la baraque Posted messages 1030 Status Contributor 329
     
    Good evening Alexou1984,

    text-decoration allows you to avoid underlines (or highlights...).
    You need to specify the color attribute if you want to customize the color of your links:
     a { text-decoration: none; color: white; /*for example*/ } 


    Best regards,
    --
    rtfm and jfgi
    27
    1. laurine2108
       
      I did the same, but despite that, some links like those in the menu remain purple.
      Any idea for a solution?
      2
    2. Tonio
       
      thanks
      0