Some text strings on my mobile version are not pure white, they tend to the background color. This happens in the section sort by of my products
Topic summary
A user reports that text in the mobile “sort by” section of their product pages appears off-white instead of pure white, blending toward the background color.
Troubleshooting steps:
- Initial confusion arose as the issue only affects mobile devices, not desktop views
- The problem was confirmed to be visible exclusively on mobile phones
Solution provided:
A CSS fix was shared to force white text color:
.mobile-facets__open svg {
stroke: #fff;
}
.mobile-facets__sort label {
color: #fff;
}
.facet-filters__field .select option,
.mobile-facets__sort .select__select option {
color: black !important;
}
The solution targets the mobile facets sorting interface and select dropdown options. The original poster was reminded to mark the solution as accepted.
Mobile version only
because that’s not the mobile version. If you go on a mobile phone you will see it. On my phone the problem is there
Please try on mobile
Paste the given CSS
.mobile-facets__open svg {
stroke: #fff;
}
.mobile-facets__sort label {
color: #fff;
}
.facet-filters__field .select__select option, .mobile-facets__sort .select__select option {
color: black !important;
}
Don’t forget to like and accept the solution.
Thanks
1 Like



