How to remove the gray background from the header on mobile

Hey guys, I want to remove the gray background under the login and currency selector on mobile.

How can I do that?

Here’s my store, so you can check it out: https://1049xn-ya.myshopify.com/

Thanks a lot,
Tim

Hi @CreatorTim

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
@media screen and (max-width: 768px){
details#Details-menu-drawer-container.menu-drawer-container.menu-opening .menu-drawer__utility-links {
    background: white !important;
}
}

Here is the result:

I hope this helps

Best,

Daisy

Thank you! WORKS