When drawer open make header black

Hi,

I have my header as transparent. When the drawer is open I need the header to turn black or words show behind it.

my site is https://eftfkw-vc.myshopify.com

Hi @Luxurymrkt

You can follow the steps here:

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there

Here is the code for step 3:

@media screen and (max-width: 768px){
sticky-header.header-wrapper:has(details#Details-menu-drawer-container.menu-drawer-container.menu-opening) header.header {
    background: black !important;
}
sticky-header.header-wrapper:has(details#Details-menu-drawer-container.menu-drawer-container.menu-opening) div#menu-drawer {
    top: 98% !important;
}
}

Here is the result:

Please let me know if it works!

Best,

Daisy