Home Forums WoodMart support forum How to change menu color Reply To: How to change menu color

#204732

Hello,

I saw the screenshot you attached and visited your website to change the background of the sub menu item you need to add the following Custom CSS in the Custom CSS for Desktop area under Theme Settings >> Custom CSS.

#menu-item-3990 .sub-menu-dropdown.color-scheme-dark {
background: #01A4B3;
}

For the text color:

#menu-item-3990 .color-scheme-dark a {
color: white !important;
}

The CSS will only affect the item you mentioned in the screenshot.

Best Regards.