Make mobile menu white with black font

Hi,

I want to change the mobile drawer menu to white background and black font. My site is https://lux360.net

Hi @Luxluxlux360

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){
.drawer__content, .header__drawer .drawer__close, .drawer__menu .sliderow {
    background: white;
}

a.drawer__account, .drawer__button, .drawer__inner {
    color: #000;
}

.drawer__menu .sliderow {
    border-bottom: 1px solid black;
}
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!