Making links a certain color in a certain section

Discussion in 'CSS' started by Glen, Mar 28, 2007.

  1. #1
    How would I go about making say..only the links in the footer section white?

    I know its something like footer a { font-color:#FFFFFF; }

    But I guess I have it wrong as its not working

    P.S Footer is its own class
     
    Glen, Mar 28, 2007 IP
  2. Glen

    Glen Peon

    Messages:
    1,852
    Likes Received:
    91
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Glen, Mar 28, 2007 IP
  3. crazybjörn

    crazybjörn Peon

    Messages:
    270
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #3
    #footer or .footer would have worked as well, provided the parent container is id="footer" or class="footer".
     
    crazybjörn, Mar 28, 2007 IP
  4. bacanze

    bacanze Peon

    Messages:
    2,419
    Likes Received:
    127
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Example

    
    .box a:link, a:visited {
    color:#FFFFFF
    }
    HTML:
     
    bacanze, Mar 28, 2007 IP
  5. www.infoebookstore.co.uk

    www.infoebookstore.co.uk Peon

    Messages:
    487
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #5