Mobile Mega Menu Text is White and Should be Black

Solved

Mobile Mega Menu Text is White and Should be Black

rivandrai
Tourist
5 0 2

Here is my website rivandrai.com.  When I click on my menu item > girls > bottoms> the text is white and should be black.  It works fine on my desktop mega menu.  Can someone give me the code that will fix this?  Thank you!

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
8202 1972 2410

This is an accepted solution.

Hi @rivandrai 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes"

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

<style>
.js .menu-drawer__submenu {
    background: black !important;
}
.menu-drawer__close-button {
    color: white !important;
}
</style>

 

And Save. 

result:

Made4uoRibe_0-1727193895530.png

 

 

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

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 10 (10)

Sangeetanahar
Explorer
541 36 69

hello @rivandrai 

Go to online store ----> themes ----> actions ----> edit code ---->assets ----> component-menu-drawer.css

add the code end of the file

@media only screen and (max-width: 767px) {

#shopify-section-header .list-menu__item {
    color: #4a4747 !important;
}
}

result

GIRLS-Curated-Kidswear-09-24-2024_09_13_PM.png

 

Buy me a Pizza


If this was helpful, hit the like button and accept the solution.
Thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me [email protected] - Skype: live:sangeetarahuldhiman -Whatsapp: +917009811712
Checkout Some Free Sections Here
rivandrai
Tourist
5 0 2

This didnt work.

Sangeetanahar
Explorer
541 36 69

hello @rivandrai 

you check it is running

Riv-Rai-Curated-Kidswear-09-24-2024_09_34_PM.png

thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me [email protected] - Skype: live:sangeetarahuldhiman -Whatsapp: +917009811712
Checkout Some Free Sections Here

Arif_Shopidevs
Shopify Partner
263 36 36

@rivandrai 

Step 1: Navigate to your Shopify admin panel and go to "Online Store."

Step 2: Click on "Themes" and then select  Edit code

Step 3:  Find base.css

#menu-drawer .list-menu__item {
    color: #000 !important;
}

 

it will solved your issues

Arif_Shopidevs_0-1727192506563.png

Found it helpful? Please like and mark the solution that helped you. 

 

 

Found it helpful? Please like and mark the solution that helped you.
Slider Revolution - Create sliders, theme sections, banners, videos, pages, advanced animation, and social feeds.
Essential Grid Gallery - Create photo galleries, video galleries, portfolio galleries, product gallery, collection gallery and more.
EasyDisplay: Product Showcase - Easily display collections, related products, discounts, recently viewed items, and best sellers
rivandrai
Tourist
5 0 2

This didn't work.

BSS-TekLabs
Shopify Partner
2343 698 823

 
- Here is the solution for you @rivandrai 
- Please follow these steps:
1. Go to Online Store --> Theme --> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head> and press 'Save' to save it

 

<style>
#shopify-section-header .list-menu__item {
    color: black !important;
}
</style>

 

- Here is the result you will achieve:

BSSTekLabs_0-1727192584282.png

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
rivandrai
Tourist
5 0 2

This did not work.

BSS-TekLabs
Shopify Partner
2343 698 823

Please search in the theme.liquid file to see if there is any code like this, then delete it.

#shopify-section-header .list-menu__item {
    color: white !important;
}

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Made4uo-Ribe
Shopify Partner
8202 1972 2410

This is an accepted solution.

Hi @rivandrai 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes"

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

<style>
.js .menu-drawer__submenu {
    background: black !important;
}
.menu-drawer__close-button {
    color: white !important;
}
</style>

 

And Save. 

result:

Made4uoRibe_0-1727193895530.png

 

 

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

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
rivandrai
Tourist
5 0 2

That worked!  Thank you so much!