If you have ever designed a web page and it all looks good but then someone shows you what your phone numbers are displayed like on Apple devices, it can be annoying. You work on a PC, that does not display them, you test on an android in chrome and Firefox, and again its all fine. but Safari will show telephone numbers as blue hyperlinks!!!
The best way to get rid of these if you so wish is to add a little sprinkling of CSS.
The code below added to your CSS will make the telephone links black (#000)
1 2 3 |
a[href^=tel]{ color:#000; text-decoration:none;} |