Use this CSS to make the menu drawer transparent
- From your Shopify admin dashboard
- Navigate to Online stores > Themes > Select the main theme
- Click on Actions > Edit code
- From the code editor, search for the base.css file
- Paste this code at the bottom of the file
.menu-drawer {
background-color: transparent !important;
}
Use this CSS to remove the background dark overlay
.header__icon--menu[aria-expanded="true"]::before {
background: rgba(var(--color-foreground), 0.0) !important;
}
Cheers!