Refresh Theme - How To Change Main Menu Text Color WITHOUT Changing The Website Background?

So I want to make my main menu color dark to contrast the light heading color-- but there’s one option in theme colors that changes the main menu text color AND the background of the website at the same time.

Any idea how to make the text dark while keeping the background light?

(Also, I don’t want to make the background/ main menu green, it’s just for the post)

1 Like

@goldengooseeeee

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

Hello @KetanKumar

Can you give me your Store URL( with pass if your store password is enabled) so I can check it for you?

Kind & Best regards,
GemPages Support Team

https://the-iceballmaker.myshopify.com/

https://the-iceballmaker.myshopify.com/

1 Like

Hello @goldengooseeeee

You can follow these steps:

  1. Go to Online Store->Theme->Edit code

  1. Open your theme.liquid file, paste the below code before

I hope the above is useful to you.

Kind & Best regards,
GemPages Support Team

1 Like

Please add below css code in bottom of assets/base.css file

ul li .list-menu__item span {
color: red; (give any color code instead of red as per your website)

}
Thank you.

1 Like

@goldengooseeeee

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css ->paste below code at the bottom of the file.
.header span, .header a { color: #000 !important;}
1 Like