How can I fix a transparent background issue in my Mega Menu on mobile view?

Solved

How can I fix a transparent background issue in my Mega Menu on mobile view?

frankboykin55
Tourist
12 0 1

Having an issue with my Mega Menu. When on mobile view, the background become transparent and the links are left floating and hard to read.  Any help would be greatly appreciated! 

 

URL: https://twineandstable.com/

thumbnail5.jpeg

Accepted Solution (1)

Weaverse
Shopify Partner
82 27 38

This is an accepted solution.

 

You can change your mega menu background on mobile by adding the following CSS code to your theme's stylesheet (usually theme.scss.liquid or theme.css in the Assets folder):

 

 
.menu-drawer {
    background: #8d7b68;
}

This will set the background color to the specified shade of brown. Feel free to replace #8d7b68 with any color you prefer. Save the changes, and it should resolve the issue on mobile view. Let me know if you need further assistance!

Helping merchants build super unique, high-performance storefronts using Weaverse + Hydrogen.
Looking for Development & Agency partners.
If you find the answer helpful, give it a thumbs up!
Our App: Theme Customizer for Shopify Hydrogen
Join our Weaverse + Hydrogen community: Weaverse Community

View solution in original post

Replies 2 (2)

Weaverse
Shopify Partner
82 27 38

This is an accepted solution.

 

You can change your mega menu background on mobile by adding the following CSS code to your theme's stylesheet (usually theme.scss.liquid or theme.css in the Assets folder):

 

 
.menu-drawer {
    background: #8d7b68;
}

This will set the background color to the specified shade of brown. Feel free to replace #8d7b68 with any color you prefer. Save the changes, and it should resolve the issue on mobile view. Let me know if you need further assistance!

Helping merchants build super unique, high-performance storefronts using Weaverse + Hydrogen.
Looking for Development & Agency partners.
If you find the answer helpful, give it a thumbs up!
Our App: Theme Customizer for Shopify Hydrogen
Join our Weaverse + Hydrogen community: Weaverse Community
frankboykin55
Tourist
12 0 1

Thank you Weaverse! Quick fix 🙂 your are awesome!