Can't Change a Color W/ WP Plugin

Discussion in 'CSS' started by jhmattern, Apr 12, 2007.

  1. #1
    I'm using the CollapseIt plugin for wordpress at www.BizAmmo.com. I need to change the color of the current category after it's been clicked, and can't figure out how, since it's not in the general css file.

    For example, click on Advertising in the left column. Then the subcategories will appear in the menu, but the "Advertising" label turns white, which can't be seen in the column (and I really don't want to change the column's background color). If you have any ideas of how I can change that to be black or something, I'd appreciate any help. :)

    Jenn
     
    jhmattern, Apr 12, 2007 IP
  2. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #2
    When the li is no longer a link, it reverts to the #page selector, which has {color: #fff;}.

    Try adding this:
    
    #left_sidebar ul li {
      color: black;
      font-weight: bold;
      }
    Code (markup):
    cheers,

    gary
     
    kk5st, Apr 12, 2007 IP
    jhmattern likes this.