Reply To: Menu color

#3391
Nexus
Moderator

Yeah, you can do that. Use the chrome developer tool to find out the id of the list item which has the sub-menu (ul) and set a background for it in the custom css of theme options like below

#menu-item-4039 .sub-menu {
background:  #0000ff;
}

#menu-item-4042 .sub-menu {
background: #ff0000;
}

See the screenshot for assistance. Of course your menu ids will be different 🙂 . Thanks!