0

I have the following problem: The background of my page is black. In white letters I have the telephone number. In my Iphone (safari browser) the link gets black and therefore it can not be seen. With all other browser I don't have the same problem... The code I use:

<p style="text-align: center;"><span style="color: #ffffff;text-decoration:none;">Tel. : 0171 268 5450</span></p>

I think that Safari recognizes the field as telephone number and underlines it. How to get rid of it?

Cœur
  • 37,241
  • 25
  • 195
  • 267
newbie
  • 31
  • 6
  • So, after some searching I found the answer here : https://stackoverflow.com/questions/3736807/how-do-i-remove-the-blue-styling-of-telephone-numbers-on-iphone-ios – newbie Dec 11 '17 at 21:33
  • Possible duplicate of [How do I remove the blue styling of telephone numbers on iPhone/iOS?](https://stackoverflow.com/questions/3736807/how-do-i-remove-the-blue-styling-of-telephone-numbers-on-iphone-ios) – Cœur Apr 22 '18 at 18:22

1 Answers1

0

Is it possible it is a previously visited link? some browsers will have different font colors for links depending on if the user has visited them or not.

a:visited { color: white !important; }
jeh
  • 577
  • 6
  • 18
  • That was not the problem, but I found another solution which is shown here : https://stackoverflow.com/questions/3736807/how-do-i-remove-the-blue-styling-of-telephone-numbers-on-iphone-ios – newbie Dec 11 '17 at 21:33
  • You should edit the above post to show people it is [solved] since there is no accepted answer. – jeh Dec 11 '17 at 21:35