Adrian
Adrian

Reputation: 2656

iPad/iPhone please stop parsing telephone number on my site

my iPad is recognizing telephone numbers on my site and breaks the layout. How I can stop that?

The site is here: my site

Screenshot

Upvotes: 3

Views: 624

Answers (2)

Ronny
Ronny

Reputation: 4517

If you do want this functionality anywhere on the site but numbers at specific places are breaking the layout, you can wrap those numbers in <a> tags, even without href, and so parsers won't turn them into clickable links.

Upvotes: 0

sdo
sdo

Reputation: 662

You can let the DOM know not to code tel functionality into the content encoding with the following meta tag:

<meta name = "format-detection" content = "telephone=no">

Hope this helps.

Upvotes: 6

Related Questions