Archived topic
transparent mobile menu bug
1 reply · Started by Moses on January 3, 2018
Viewing posts 1–2 of 2
I use this CSS to create transparent mobile menu:
@media (max-width: 768px) {
.mobile-header-navigation:not(.navigation-stick) {
background-color: transparent;
}
}
But the problem is that it makes the menu items transparent (and hence unreadable) as well.
Hi there,
Try this:
@media (max-width: 768px) {
.main-navigation .main-nav ul li a {
background-color: #ffffff;
}
}
This archived topic is closed to new replies.