I am trying to colour my whole menu block forcibly white. I can see all these colour options but they seem to only the various child, parent etc links, which is great, I just want to be able to force some custom css onto the div. I am poking around inside of the plugin but can’t see where the class is created for my particualar module.
I am really just looking to add the classe white to the parent div
I can’t provide a live site at the moment because it is hosted internally. I am more than happy to further clarify.
Thanks in advance.
OnPoint Plugins
Hi Andrew,
Each widget will get the class
advanced-sidebar-menu
. You may change the colors like so:background
.advanced-sidebar-menu {
background: white !important;
}
Text color
.advanced-sidebar-menu a {
color: white !important;
}
Have a great day!
Mat Lipe
a.hase
I feel stupid now 😀 Thanks worked a treat!