How can I change my header menu text color to white?

Hey guys,

at the moment you cant see the menu text in the header because it’s black on a dark background. I need the text color to be white please.

https://hg2cy8uwhgd7k7fy-69711397132.shopifypreview.com

Thank you!

1 Like

Hi @domo2 ,

Try this.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
header.header.header--middle-center.header--mobile-center.page-width.header--has-menu * {
    color: white;
}

Result:

I hope it help.

1 Like

It worked thank you. But i forget to mention that it has to be white only on the frontpage, not on all the other pages. Now it’s white on every page.