How can I change the mobile dropdown menu color to black?

Hey guys, is anyone able to help me fix this problem?! I need to somehow change the color of the dropdown navigation menu on mobile to black with white text, without altering any other area of my store. Store URL: https://prestigestorageco.com

Thankyou in advance!!

Try adding this code to the bottom of theme.scss file

.mobile-nav__link.mobile-nav__link{
color: white;
background-color: black;
}

.border-bottom {
border-bottom: 1px solid white;
}
1 Like

@JHUTCHESSON1707

Please Go to Online Store → Themes → Edit code → Assets → theme.scss.liquid and paste this code at the end of this file.

.mobile-nav {
    background-color: #000000;
}