I have ran into this before when site goes below 480px and have the solution saved but when I add it to the css…no change. I have cleared cache and still no success. Please advise. Thank you.
a[href^=“tel”] {
color: #333;
}
I have ran into this before when site goes below 480px and have the solution saved but when I add it to the css…no change. I have cleared cache and still no success. Please advise. Thank you.
a[href^=“tel”] {
color: #333;
}
Hi there,
Thanks for writing in! Are you referring to the phone number in your topbar?

If that’s the case then you can try using the following code instead:
@media screen and (max-width: 480px) {
.masthead .x-topbar .p-info {
color: #333;
}
}
Let us know how this goes!
Worked great! Thank you.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.