Archived topic
Change background color for mobile menu only
3 replies · Started by Eva on March 16, 2021
Hi, I use a transparent background for the primary navigation, but that doesn't work for the mobile menu. I have tried to find a solution on the forum, and tried many, but nothing seems to work. I am using anchor links in the menu.
I hope there is a way to solve this.
Thank you,
Eva
Hi there,
You can use some CSS to add some color to the background of the mobile menu:
@media(max-width: 768px) {
#menu-menu {
background-color: #000;
}
}
So easy! :-)
Thank you again for your help, David.
Highly appreciated, as always!
You're welcome