Sorry for all the posts! I really appreciate all your fine work!
I wanted to do the following to the regular menu, but when I add this to the custom CSS, it messes up the mobile menu. How can I do this without changing the mobile menu?
.is-submenu-dark .nav-menu ul ul li {
background-color: #555555;
}
.is-submenu-dark .nav-menu ul ul li a:hover {
background: #6b6b6b;
}
Hi Steve,
You can only target the desktop view by adding the media code at the beginning.
@media screen and (min-width: 992px) {
.is-submenu-dark .nav-menu ul ul li {
background-color: #555555;
}
.is-submenu-dark .nav-menu ul ul li a:hover {
background: #6b6b6b;
} }