• Resolved hesteem2019

    (@hesteem2019)


    Hi,
    I want to customize the main menu of my blog. I am using the free version of the Neve theme. There is no option to change the color of the drop-down menu box and its text. Do I need to buy the pro version? Or there is a way to change the color?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @hesteem2019,

    Thanks for choosing Neve!

    It’s possible to change the background color of the submenu and the text color of the menu items by adding the code below in the Additional CSS section within the Customizer. Feel free to change the colors as you please.

    ul.sub-menu {
        background-color: blue !important;
    }
    
    ul.sub-menu .menu-item a{
        color: white !important;
    }

    Have a nice day!

    Thread Starter hesteem2019

    (@hesteem2019)

    Thank you very much. The code is working fine. Is there any code to change the hover color as well? i.e. when hovering over the sub-menu item.

    Thanks

    Mat

    (@mateithemeisle)

    Hello @hesteem2019 ,

    Thank you for your reply!

    This effect can be achieved by adding this code too:

    ul.sub-menu .menu-item a:hover {
        color: blue !important;
        background-color: white !important; //this line is in case you wish the background color to change too
    }

    Thank you and have an amazing day!

    Thread Starter hesteem2019

    (@hesteem2019)

    Thanks, Mat. The code is working fine.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to change Neve menu drop-down box colour?’ is closed to new replies.