Change fade color

How to change the faded color from white one to a black. This appears when manu drawer is opened. https://a0jje7-i8.myshopify.com/ password: gucool

1 Like

Hi @DoVis7

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

.header__icon--menu[aria-expanded='true']::before {
    background: rgba(0, 0, 0, 0.5) !important;
}

Result

Best,

Liz

Hi @DoVis7 ,

Hi @DoVis7 ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

.header__icon--menu[aria-expanded='true']::before {
    position: absolute;
    background: rgb(0 0 0 / 50%) !important;
}

Hi @DoVis7

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.header__icon--menu[aria-expanded='true']::before {
  background: rgba(0, 0, 0, 0.5) !important; 
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

I’ve added the code, saved and gave it some time to update. But unfortunatly there was no change what so ever.