Menu Drop Down Transparent

Solved

Menu Drop Down Transparent

MacyMaeDesigns
Visitor
2 0 3

My drop down menu on desktop is transparent making it hard to read. How can I make it solid white? 

 

www.macymae.com

Accepted Solution (1)

Moeed
Shopify Partner
7544 2035 2501

This is an accepted solution.

Hey @MacyMaeDesigns 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
ul.site-nav__dropdown.text-left {
    background: white !important;
}
</style>

RESULT

Moeed_0-1746809310463.png

 

If I managed to solve your problem then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 5 (5)

Moeed
Shopify Partner
7544 2035 2501

This is an accepted solution.

Hey @MacyMaeDesigns 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
ul.site-nav__dropdown.text-left {
    background: white !important;
}
</style>

RESULT

Moeed_0-1746809310463.png

 

If I managed to solve your problem then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


MacyMaeDesigns
Visitor
2 0 3

That worked, thank you!

 

The newsletter/discount pop up I have is doing the same thing, is there a code for that? 

devcoders
Shopify Partner
1469 173 454

Hello @MacyMaeDesigns 

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:

.modal-open .modal:before {
background: #a7a3a3;
}
.modal-open .modal .modal__inner {
background: #fff;
}

 

devcoders_0-1746810331627.png

 



Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!

devcoders
Shopify Partner
1469 173 454

Hello @MacyMaeDesigns 

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:

 

.site-nav__dropdown {
background: #fff!important;
}

 

devcoders_0-1746809326817.png

 

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!

StevenT_A7
Explorer
81 6 8

Hi Macy, 

 

Use the following code in your CSS file to change menu to opaque:

 

/* Make dropdown menu background solid white */
.site-nav__dropdown,
.dropdown-menu,
.site-header__menu-item .site-nav__dropdown {
background-color: #ffffff !important;
opacity: 1 !important;
color: #000000 !important; /* optional: set text color to black */
}

/* Optional: Remove blur or transparency if using backdrop filters */
.site-nav__dropdown {
backdrop-filter: none !important;
}

 

If your dropdown still looks transparent, it's possible your theme uses JavaScript to apply styles or loads CSS dynamically. Let me know the theme you're using (like Dawn, Prestige, etc.) and I can tailor the fix more precisely.

 

Clear your browser cache if the change doesn’t show immediately.

 

Thanks

Steven Taylor
302-260-8345