Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Can’t target sublist anchor

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #45207
    mdrd88
    Participant

    Hello, I have been working on a vertical sub nav bar and it’s working out so far, however, I cannot find out how to figure out how to change the color of the sub list anchor tag.

    Here is the link and thank you for your time

    http://codepen.io/seraphzz/pen/Lzyme

    #137073
    Paulie_D
    Member

    Change this

    #nav li:hover a {
    color: #333;
    }

    to this

    #nav li:hover > a {
    color: #333;
    }

    That should get you started.

    #137090
    mdrd88
    Participant

    Perfect! Thank you very much!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.