Hi, we have the following code which works for a single text item color in our header but it’s not showing up on mobile.
.dropdown__family:last-child .navtext {
color: red; !important;
font-weight: bolder; !important;
}
How can we make it display on mobile? Our site is www.uncertn.com
Hi @UCJustin ,
The writing of the code is wrong.

Please edit that must be look like this.
.dropdown__family:last-child .navtext {
color: red !important;
font-weight: bolder !important;
}
I hope it help.
Hi, it looks like that still didn’t work 
Yeah, cause in the mobile its on the hamburger menu.. So it change the selector.
You can try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.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:
- And Save.
@media only screen and (max-width: 730px){
#sliderule-452cf664608639598df382fd25b978c9 > div.sliderow__links > div:nth-child(4) > div >
a.sliderow__title {
color: red;
}
}
Result:
I hope it help.