Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to remove the default blue hyperlink colour from a telephone number when viewed on an iPhone? Like a specific Mobile Safari tag or CSS to add?

I only have this in place for the number:

<p id="phone-text">Call us on <strong>+44 (0)20 7194 8000</strong></p>

And there are no hyperlinks but iPhone still renders this text number as a hyperlink. I have this rendering issue on some of my websites but can't see why this is occurring.

I did read this post:

Mobile HTML rendering numbers

But is that the only solution possible?

share|improve this question
We had this only yesterday. Hang on, I'll search for the duplicate – Pekka 웃 Sep 17 '10 at 15:42
Not entirely sure whether this is the same thing, can you check please? stackoverflow.com/questions/3712475/… – Pekka 웃 Sep 17 '10 at 15:43
1  
@Pekka: I think this question is similar but distinct. That was about preventing something from being wrongly interpreted as a phone number. This appears to be about preventing real phone numbers from uglying up your design. – Chuck Sep 17 '10 at 17:15

11 Answers

To remove all auto-formatting for telephone numbers, add this to the head of your html document.

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

View more Apple-Specific Meta Tag Keys.

If you have phone numbers on the page with these numbers you should manually format them as links:

<a href="tel:1-408-555-5555">1-408-555-5555</a>
share|improve this answer
   
Hi Beausmith, thanks for your answer. Ended up using your first solution in the end a while ago...just wondered if there another solution to the problem. – Reno Oct 31 '10 at 16:27
@Beau Smith, that worked for me too, but not on iPod 1st Generation's Safari. Is there any specific tag for that old browser? – Lado Lomidze Apr 19 '12 at 7:26
5  
45 answers and still haven't made that the solution? :) – kaleazy Sep 24 '12 at 6:57
This is the answer. Had a contact page that the numbers wouldn't show up on iPads and iPhones. This did the trick, thank you! – tahdhaze09 Feb 13 at 19:20

If you want to retain the function of the phone-number, but just remove the underline for display purposes, you can style the link as any other:

a:link {text-decoration: none; /* or: underline | line-through | overline | blink (don't use blink. Ever. Please.) */ }

I haven't seen documentation that suggest a class is applied to the phone number links, so you'll have to add classes/ids to links you want to have a different style.

Alternatively you can style the link using:

a[href^=tel] { /* css */ }

Which is understood by iPhone, and won't be applied (so far as I know, perhaps Android, Blackberry, etc. users/devs can comment) by any other UA.

share|improve this answer
3  
It's probably a good idea to use a[href^=tel:] so that you don't accidently match hrefs to telephone.html etc. – Mattias Wadman Mar 17 '12 at 18:10
@MattiasWadman your suggestion did not work for me in Chrome or mobile Safari. – gordian Jun 10 at 19:02
But without colon it works? – Mattias Wadman Jun 10 at 19:25

Just to elaborate on an earlier suggestion by David Thomas:

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

Adding this to your css leaves the functionality of the phone number but strips the underline and matches the color you were using originally.

Strange that I can post my own answer but I can't respond to someone else's..

share|improve this answer
This is the answer! – Don Rhummy Apr 12 at 22:47

Call us on +44 (0)20 7194 8000

I wonder if they ever get any calls? The number format is NOT valid and cannot be called.

According to the ITU-T E.123 standard, the international format should include only the digits that must be dialled from abroad. It must not contain brackets and must not contain digits that are not dialled from abroad.

The correct format is either +44 20 7194 8000 OR (020) 7194 8000 not a combination of the two.

share|improve this answer
1  
In the UK, (020) 7194 8000 would not be valid as the 020 must be dialled, even within London. The form they used might be 'invalid' but is commonly used as most people in the UK choose not to recognise +44 20 7194 8000. ITU standard does not reflect real usage. It's a problem with auto-formatting phone numbers. Some are expected to be read, some to be dialled. Formatting should be treated differently. Perhaps the Ipad/Iphone detection algorithm should explicitedly ignore all 'invalid' numbers? – user1094142 Dec 12 '11 at 16:34
The area code would not need to be used on a landline connected on the same area code. – David Dec 12 '11 at 16:43
@ColinPerry The 020 does not have to be dialled within London. – robertc Jun 26 '12 at 11:15

According to Beau Smith from this subject: remove styling of telephone numbers

You should apply "tel:" in the href attribute of your link like this:

<a href="tel:5551231234">555 123-1234</a>

It will remove any additionnal style and DOM to the phone number string.

:)

share|improve this answer

In case people find this question on Google, all you need to do is treat the telephone number as a link as Apple will automatically set it as one.

your HTML

<p id="phone-text">Call us on <strong>+44 (0)20 7194 8000</strong></p>

your css

#phone-text a{color:#fff; text-decoration:none;}
share|improve this answer

No need to remove format detection by using <meta name="format-detection" content="telephone=no">. Try using phone number in any tag rather then anchor tag and style it accordingly eg. span{background:none !important;border:0;padding:0;}

share|improve this answer

This did it for me:

.appleLinks a {color:#000000;}
.appleLinksWhite a {color:#ffffff;}

You can find more info here.

share|improve this answer

I’ve been going back and forth between

1.

    <a href="tel:5551231234">

2.

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

Trying to make the same code work for desktop and iPhone. The problem was that if the first option is used and you click it from a desktop browser it gives an error message, and if the second one is used it disables the tab-to-call functionality on iPhone iOS5.

So I tried and tried and it turned out that iPhone treats the phone number as a special type of link that can be formatted with CSS as one. I wrapped the number in an address tag (it would work with any other HTML tag, just try avoiding <a> tag) and styled it in CSS as

.myDiv address a {color:#FFF; font-style: normal; text-decoration:none;}

and it worked - in a desktop browser showed a plain text and in a Safari mobile showed as a link with the Call/Cancel window popping up on tab and without the default blue color and underlining.

Just be careful with the css rules applied to the number especially when using padding/margin.

share|improve this answer

If you simply want to avoid phone numbers being links at all try using the font tag:

<p>800<font>-</font>555<font>-<font>1212</p>
share|improve this answer
2  
The font tag is deprecated in HTML 4.01 and obsolete in HTML5... – McFjodor Apr 22 '12 at 15:35

Try using putting the ASCII character for the dash in between the digit separations.

from this: -

to this: &ndash;

ex: change 555-555-5555 => 555&ndash;555&ndash;5555

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.