The text in drawer doesnt show anymore

Topic summary

A user reported that text in their mobile drawer menu disappeared after clicking navigation items like “Velg din bil” (Choose your car). The text turned white and became invisible, though arrows remained visible.

Troubleshooting steps:

  • Initial attempts to share the store preview link (www.mlbildeler.no, password: warhog) had connectivity issues
  • The problem was confirmed to occur only on mobile devices, not desktop

Resolution:
A CSS solution was provided to fix the text color issue:

#meteor-mobile-nav li>a * {
  color: black !important;
}

The code should be added to the theme’s CSS file (theme.css or base.css) via the code editor. The solution successfully resolved the issue, with the original poster confirming it worked.

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

You can Add this CSS

in your Theme → code editor → theme.css / base.css file

#meteor-mobile-nav li>a * { color: black !important; }

If This Solution Workined kindly Like and Mark It A Solution

1 Like