How do i change the text color on mobile navigation? www.itaworld.eu
Topic summary
A user seeks help changing the text color in their mobile navigation menu for their Shopify store (itaworld.eu).
Solution Provided:
Another user offers CSS code targeting the mobile menu drawer:
- Uses
.menu-drawer__menu > li:last-childselector - Applies
colorproperty to change text color - Example shows setting color to orange or red
The response includes a code snippet that can be added to the theme’s custom CSS to modify the mobile navigation text appearance. A screenshot was included in the original question to illustrate the current state.
1 Like
Hi @itaworld
.menu-drawer__menu > li:last-child {
background: red;
}
.menu-drawer__menu > li:last-child .link--text{
color: orange;
}
