Hi there,
Thanks for writing in! It seems you have added the following code to change the background color of menu and submenu together :
.x-navbar, .x-navbar .sub-menu {
background-color: hsla(329, 65%, 45%, 0.5) !important;
}
If you want to add this for main menu only then update the code to following :
.x-navbar {
background-color: hsla(329, 65%, 45%, 0.5) !important;
}
To control the submenu background indiviudually, you can use this :
.x-navbar .sub-menu {
background-color: #DE93BA!important;
}
Hope this makes sense.