Hello everyone
I have inserted a full-width submenu here on this page, link below:
I would like to change the background color (now white) of this menu
where can I do this?
best regards
Franz
best would be to have a custom class on that element f.e. bg-colored-sub-menu
#top .av-submenu-container.bg-colored-sub-menu {
background-color: lightblue;
}
this will only have an effect on the submenu – if you like to have the same bg-color for the list items:
#top .av-submenu-container.bg-colored-sub-menu a {
background-color: lightblue;
color: #000;
border-color: darkblue
}
Many thanks Guenni007
that’s great so
I can also change the background color of the letters.
best regards
Franz