Home › Forums › CSS › Website Text Messed Up On iPad › Reply To: Website Text Messed Up On iPad
January 28, 2015 at 11:21 am
#194524
Participant
Safari recognizes the phone numbers and styles them automatically, making them links, and so they will take these styles:
a {
display: block;
width: 197px;
background-color: #444444;
border-left: 1px solid silver;
border-right: 1px solid silver;
border-bottom: 1px solid silver;
}
To disable that sort of thing, add this to your header:
<meta name = "format-detection" content = "telephone=no">
(Expecting a share of the prize if you win the competition)