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
A user needed to remove the gray background appearing under the login and currency selector in their mobile header.
Solution provided:
!important flag to override existing stylesStatus: Resolved - the CSS solution successfully removed the gray background as confirmed by the original poster.
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:
@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