Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #101437
    effess
    Participant

    Catch Kathmandu Pro: I want to change the hover color for the current menu item in the responsive secondary menu. Can you give me the CSS please?

    #101444
    Pratik
    Keymaster

    Hi @effess,

    Can you post in your site url?

    #101479
    effess
    Participant
    #101481
    Pratik
    Keymaster

    Hi @effess,

    Try following CSS code in Appearance=> Customize=> Theme Options=> Custom CSS box:

    
    #secondary-menu .sb-options a:hover {
        background-color: #eeeeee;
        color: #ffffff !important;
    }
    

    You can change the values of hex colors to ones you like.

    Regards,
    Pratik

    #101487
    effess
    Participant

    No — maybe it’s called the current page. In the responsive menu, the color is white but the hover color is black and it should be white as well. Thanks.

    #101488
    Pratik
    Keymaster

    You can change the hex value of colors to the color you want. This should work.

    #101491
    effess
    Participant

    It works on the dropdown menu, but it’s the top item (the name of the current page) that needs changing.

    #101494
    Pratik
    Keymaster

    Oh.. for that try following code:

    
    #masthead .sb-holder a:hover {
        color: #ffffff! important;
        text-decoration: none; /* Remove this line if you want underline on hover */
    }
    
    #101498
    effess
    Participant

    Aha! That was it, thanks!

    #101522
    Pratik
    Keymaster

    You are welcome 😀

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘current item in responsive menu’ is closed to new replies.