How to change mobile header dropdown menu transparency (broadcast theme)

Hello,

Is there a way to make the header transparency more darker so the menu text items are more legible?

Thank you in advance.

@TimTakeTwo Can you please provide the URL of your store and if it is password protected please share the password too. Thanks

@TimTakeTwo You need to add this code in the theme files. For which you need to go to Online Store > Actions (Active theme) > Edit Code > Assets, under assets add the code at the bottom of theme.css file.

.drawer__inner{
  background-color:#000;
}

Hi @TimTakeTwo

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


If its not dark enough, you can increase 0.9 to keep the transparent.

Hope this can help you solve the issue

Best regards,

Richard | PageFly

Hello @TimTakeTwo :waving_hand:

In Shopify Admin, you can go to Edit theme code, open file theme.css and add this code at the bottom

.drawer__underlay {
background-color: #000000CC !important;
}

The result

Hope that helps!