How can I change the menu font color on Dawn theme?

Topic summary

A user seeks help changing their Dawn theme mega menu font color from red to white.

Solution Provided:

  • Navigate to Online Store → Theme → Edit code
  • Open the theme.liquid file
  • Insert CSS code before the closing </body> tag:
.mega-menu__link, .mega-menu__link--level-2 {
  color: #fff !important;
}

Follow-up Question:
Another participant asks how to modify the color for only one specific submenu, rather than applying the change globally to all mega menu items.

The discussion remains open with the targeted submenu customization question unanswered.

Summarized with AI on November 19. AI used: claude-sonnet-4-5-20250929.

Hello,

I would like to change the font color inside my mega menu from red to white. Can someone please help me.

Maxi-Brillian (maxibrillian.com)

pw: deropa

Hello @MaxiMaxi
You can add code by following these steps to change color of megamenu from red to white

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.mega-menu__link, .mega-menu__link--level-2 { color: #fff !important; }

1 Like

Hello @niraj_patel and if I want to change the color of only one specific submenu?