1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

need simple fix with css on my directory

Discussion in 'CSS' started by carminx, Feb 18, 2009.

  1. #1
    the site is freedirectoryweb.com
    dunno how to explain but i'll try my best.
    on the left site on CATEGORIES when i go with the mouse on one category i want to be red not black
    on the center the same problem i want to be black not red
    thank you
     
    carminx, Feb 18, 2009 IP
  2. karthimx

    karthimx Prominent Member

    Messages:
    4,959
    Likes Received:
    127
    Best Answers:
    2
    Trophy Points:
    340
    #2
    I can help you out to fix this css problem.
     
    karthimx, Feb 18, 2009 IP
  3. scoopy82

    scoopy82 Active Member

    Messages:
    838
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    70
    #3
    Just change the color property in your "main.css" file like so:
    a, .linkDetail a:active, .linkDetail a:link, .linkDetail a:visited, .linkDetail a:hover {
    color:#000000;
    .boxPopCats li a:link, .boxPopCats li a:active, .boxPopCats li a:visited {
    color:#CA0002;
    Code (markup):
     
    scoopy82, Feb 18, 2009 IP
  4. carminx

    carminx Peon

    Messages:
    381
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #4
    i don't want to change the colors. just when i go with the mouse over one category from the left site i want it to be red and in the central section black.
     
    carminx, Feb 18, 2009 IP
  5. karthimx

    karthimx Prominent Member

    Messages:
    4,959
    Likes Received:
    127
    Best Answers:
    2
    Trophy Points:
    340
    #5
    add this file

    .linkDetail a:hover {
    color: #000000;
    text-decoration: underline;
    }
     
    karthimx, Feb 18, 2009 IP
  6. carminx

    carminx Peon

    Messages:
    381
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #6
    karthimx solved half of the problem. thank you.
     
    carminx, Feb 18, 2009 IP
  7. scoopy82

    scoopy82 Active Member

    Messages:
    838
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    70
    #7
    In that case... do like karthimx said... but for the other class
    .boxPopCats li a:hover {
    color:#000000;
    }
    Code (markup):
     
    scoopy82, Feb 18, 2009 IP