How can I change the color of links in ADDs

Discussion in 'Co-op Advertising Network' started by chukov, Feb 3, 2005.

  1. #1
    How can I change the color of links in ADDs?

    I have css about tag a in whole the site

    but there are some places where I need links to be in other color?
     
    chukov, Feb 3, 2005 IP
  2. Lever

    Lever Deep Thought

    Messages:
    1,823
    Likes Received:
    94
    Best Answers:
    0
    Trophy Points:
    145
    #2
    OK, let's say your links are in a table or div with a class="classname"...

    In your CSS just set up
    .classname {
    }
    .classname a:active
    {   
    }
    .classname a:link
    {   
    }
    .classname a:visited
    {   
    }
    
    .classname a:hover
    {   
    }
    Code (markup):
    So anything within the "classname" class will be set to these parameters :)
     
    Lever, Feb 3, 2005 IP
  3. chukov

    chukov Peon

    Messages:
    18
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I made it
    It works

    Thak you
     
    chukov, Feb 3, 2005 IP
  4. Lever

    Lever Deep Thought

    Messages:
    1,823
    Likes Received:
    94
    Best Answers:
    0
    Trophy Points:
    145
    #4
    You're welcome :D
     
    Lever, Feb 3, 2005 IP