Cant figure out this css issue.

Discussion in 'CSS' started by bloodwrath, May 26, 2008.

  1. #1
    on site http://www.neilfriesen.com/
    I got the footer links working, but the header links are not working
    it seems the a:link command is controlling the link colors and not the specific css for the header.

    How can i fix this?
    THanks
     
    bloodwrath, May 26, 2008 IP
  2. steelfrog

    steelfrog Peon

    Messages:
    537
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You haven't defined it in your CSS; add this and see how it works for you. Tweak the colors to your liking.

    #navigation li a:link { color: #FFDDCC; }
    #navigation li a:visited { color: #DDFFCC; }
    #navigation li a:hover { color: #AABBCC; }
    #navigation li a:active { color: #CCBBEE; }
    Code (markup):
     
    steelfrog, May 26, 2008 IP
  3. bloodwrath

    bloodwrath Active Member

    Messages:
    1,364
    Likes Received:
    49
    Best Answers:
    0
    Trophy Points:
    90
    #3
    thanks, i got it working..
     
    bloodwrath, May 28, 2008 IP