Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter srpollock

    (@srpollock)

    thanks for the feedback – all of the telephone and fax numbers are missing on my iPhone 5. The html is clean so it is something in the responsive translation software. Strange bug especially since the zip code shows up but none of the other numbers do.

    What’s happening here is that iOS Safari parses the phone numbers and transforms it into a hyperlink that you can tap to call(*), and because the hyperlink color is set to black, you can’t see the number. You could fix it with some custom CSS, either using a custom CSS plugin or your theme’s built-in custom CSS option, if one exists:

    @media screen and (max-width: 800px) {
    	.mythemes-page a {
    		color: white;
    		text-decoration: underline;
    	}
    }

    (*) If you load the site on your iPhone and tap the space where the phone number should be, you’ll get a prompt to call the number, even though you can’t see the phone number.

    Thread Starter srpollock

    (@srpollock)

    Steve,

    Thanks for your suggestion it worked perfectly.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘numbers not showing up in responsive (iPhone)’ is closed to new replies.