hi!
is it possible to make the menu background transparent and get rid of the black fade?
password: Christianshop123
thanks!
hi!
is it possible to make the menu background transparent and get rid of the black fade?
password: Christianshop123
thanks!
Use this CSS to make the menu drawer transparent
.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!