Menu Background Color Change
-
Hello,
Is this the correct css to change the background color of menu’s?
.sub-menu-dropdown.color-scheme-light {
background-color: rgb(0, 0, 0, 0.8);
}
Hello,
Yes, that is right. If you want to change the color add body tag to rewrite the existing styles:
body .sub-menu-dropdown.color-scheme-light {
background-color: rgb(0, 0, 0, 0.8);
}
Change the color and this code to the Theme settings > Custom CSS > Global.
Best Regards