Our site renders with inconsistent font sizes on mobile Safari -- and as far as we can tell, only mobile Safari. This very much has stumped us.

We analyzed the site with Firebug, and the incorrect areas are inheriting the right styles, yet the fonts are still rendered with the wrong sizes.

1) Visit the site: http://www.panabee.com.

2) Conduct a search for a domain name.

The boxes on the left side show the incorrect font sizes. The font size should match the font size on the right side (both box titles and box copy). For instance, the titles, "Variations" and "Twitter," are much larger than the title, "Alternate Endings."

Any clue why?

Thanks!

link|improve this question

No idea then. I've deleted my answer because it was just a guess. – thirtydot Mar 17 '11 at 19:52
thanks anyway, thirtydot! – Crashalot Mar 17 '11 at 23:44
feedback

3 Answers

up vote 16 down vote accepted

Mobile Safari boosts the font size of wide blocks (at all times), such that if you double-tap zoom in on that block (which fits the block to the screen width), the text will be legible. If you set -webkit-text-size-adjust:none, it won't be able to do this, and so when you double-tap zoom in on wide blocks the text will be illegibly small; users will be able to read it if they pinch-zoom in, but then the text will be wider than the screen and they'll have to pan horizontally to read each line of text!

The real solution, if you can't stand Mobile Safari messing with your font sizes is to make sure that none of your blocks of text are wider than 320px (you can use mobile-specific css to avoid affecting desktop browsers), then Mobile Safari won't need to increase any font sizes (and browsers which reflow text, like the Android Browser, Mobile Firefox and Opera Mobile, also won't need to change your layout).

Edit: for example try the following:

/* Mobile browsers only */
@media only screen and (max-device-width: 480px) {
    table#all_results {
        width: auto;
    }
    td#main_box {
        width: 320px;
    }
    td#side_box {
        width: 320px;
    }
}
link|improve this answer
Thanks, @John. When you say "blocks of text," are you referring to the text's parent container, or the actual amount of text? In other words, for the section titles like "Variations" and "Translations" which only contain text a few chars long, I would need to wrap them inside another DOM element (e.g., span with display of inline-block)? – Crashalot Apr 4 '11 at 19:11
@Crashalot: By blocks of text I mean elements with display:block, like <p> tags. In your case it seems you could just make both your columns 320px wide - see the example CSS I added to my answer above (this could probably be improved to better handle screen size variations). Where possible, test how it looks on real devices. You can optimize further though, for example have expandable sections like en.m.wikipedia.org/wiki/Mobile_Web so the user doesn't have to scroll so much to find the sections that interest them. – John Apr 7 '11 at 14:30
feedback

Here's what ultimately worked (tested only on iPhone 4 tho):

/* Mobile browsers only */
@media only screen and (max-device-width: 480px) {      
        td#main_box { -webkit-text-size-adjust:100% }               
}

We awarded the answer to John since his solution was the basis of this one.

Probably not the most eloquent answer, but it works.

link|improve this answer
feedback
-webkit-text-size-adjust:none;

will probably solve your problem.

target-element { -webkit-text-size-adjust:80% } 

will still zoom but keeps it 80% smaller than webkits default.

link|improve this answer
Thanks, @Thomas. This isn't quite sufficient because it also disables resizing of the font as users zoom in and out, which is undesirable. The goal is to preserve Safari's resizing based on zooms while also preserving font size consistency as defined by the CSS. – Crashalot Mar 22 '11 at 23:37
feedback

Your Answer

 
or
required, but never shown

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