Hi, How can I change the background color in the main menu drop down navigation so its green and not white? https://emeraldaurora.com
Thanks!
Hi, How can I change the background color in the main menu drop down navigation so its green and not white? https://emeraldaurora.com
Thanks!
@luke01 , do this to fix it in 20 seconds:
#NavDrawer,
#NavDrawer .mobile-nav__item{
background: #093d37 !important;
}
#NavDrawer .mobile-nav__link,
#NavDrawer .icon,
#NavDrawer .mobile-nav__item *{
color: #ceb77b !important;
}
#093d37 = background color
#ceb77b = text color
You can change the HEX colors as per your wish.
Kind regards,
Diego
Thank you. But, Iām trying to remove the white background from the desktop view of the navigation. Its where I circled. Do you know how to change that to green?
Thanks,
Oh, ok. In this case you can use the following:
.site-nav--has-dropdown:hover > *{
background: #093d37 !important;
}
Kind regards,
Diego
Thank you! Works perfect.