How can I add a solid background color to mobile navigation?

Hi!

I would like the mobile navigation to show a solid background colour block (#DFDFD8) behind it, as it’s currently not readable with the text below it (see below). On desktop it should still be transparent :slightly_smiling_face:

site

passw: skoffi

Thanks so much!

Hey,

Please try this code and paste it into the theme.css file:

@media screen and (max-width: 600px) {
#menu-drawer.menu-drawer {
background: #DFDFD8;
border: none;
}
#menu-drawer.menu-drawer ul li a {
color: #000;
}
}

Thank you
Pooja D.

that’s great, thank you!

Would it be possible to make it the shape highlighted below?