-3

Iphone changes font color of phone numbers to black on my website. I want it to be white. color: #fff !important; doesn't help. How to fix this?

xpy
  • 5,481
  • 3
  • 29
  • 48
Kermit
  • 49
  • 1
  • 8

1 Answers1

2

iOS makes phone numbers clickable by defaults (for obvious reasons). Of course, that adds an extra tag which is overriding your styling if your phone number isn’t already a link.

To fix it, try adding this to your stylesheet:

a[href^=tel] { color: inherit; text-decoration: none; }

That should keep your phone numbers styled as you expect without adding extra markup.

Hope it helps!

m_santamaria
  • 181
  • 2
  • 6