hi guys
when you go to my mobile menu and click on an item (im not sure if it is hover or active state) the background goes to grey and the text a very similar grey…
what is the css to change this?
I want the background to go to #1db8f0
and the text to be #ffffff
Hey codecreative,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
@media only screen and (max-width: 989px) {
.html_av-overlay-side #top #wrap_all div .av-burger-overlay-scroll #av-burger-menu-ul a:hover {
background-color: #1db8f0 !important;
}
.html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a:focus,.html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a:hover {
color: #fff !important;
}
}
Best regards,
Mike