Hi,
I want to change the mobile drawer menu to white background and black font. My site is https://lux360.net
A user seeks to modify their mobile drawer menu to display a white background with black text on their Shopify store.
Proposed Solution:
CSS Modifications Include:
The solution uses media queries to ensure changes apply only to mobile devices. The responder requests feedback through marking the solution and giving likes if helpful.
Hi,
I want to change the mobile drawer menu to white background and black font. My site is https://lux360.net
Try this one.
@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!