Need help with CSS to style Drupal active-trail

Discussion in 'CSS' started by ejb, Mar 11, 2009.

  1. #1
    Below is my page structure. Let's say I want my active-trail to be red. I have tried every combination of CSS I can think of to make this happen.

    <div id="menu">
    <ul class="links primary_menu">
    <li class="menu-121 active-trail first">
    </li>
    </div>

    Can anyone help me find the correct CSS?

    Thank you!
     
    ejb, Mar 11, 2009 IP
  2. ejb

    ejb Peon

    Messages:
    8
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Thanks, I figured it out.

    #menu .primary_menu li.active-trail a {
    color: red;
    }
     
    ejb, Mar 11, 2009 IP