Forums

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

Home Forums CSS [Solved] link hover doesn't work on certain pages

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #178601
    Bones_Jones
    Participant

    hi guys, noob represent!

    something weird is going on, and not sure how to fix it.

    in here PROJECT is highlighted properly.
    http://goo.gl/JptQwZ

    but when you click the project, it goes away.
    http://goo.gl/dDuA04

    so this is what i added to custom css

    .menu-item-42 a{
    color: #999;
    }

    .menu-item-42 li a{
    color: #999;
    }

    .menu-item-42 li a:hover{
    color: #000;
    }

    but it doesn’t work…

    what am i doing wrong?

    please help! thx in advance!!!!

    #178602
    Alen
    Participant

    Try this

    
    .current-page-ancestor a {
        color: #999;
    }
    .current-page-ancestor a:hover {
        color: #000;
    }
    
    #178603
    Alen
    Participant

    You might need to add !important at the end of each value for color.

    #178674
    Siva Ramachandran
    Participant

    Just add the below styles

    .sf-menu li.current-page-ancestor a {
    color: #000;
    }

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