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