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
10048 2389 3016

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 8 (8)
rivandrai
Tourist
5 0 2

This didnt work.

Arif_Shopidevs
Shopify Partner
488 40 91

@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. 

 

 

Syncora: Backup & Restore [Free] - Automated real-time store backup with one-click easy restore.
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
2401 695 832

 
- 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
2401 695 832

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
10048 2389 3016

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
rivandrai
Tourist
5 0 2

That worked!  Thank you so much!