vote up 0 vote down star

Is there a way for Mobile Safari to recognize a site meant for mobile phones and automatically zoom in? How does that work on other phones and browsers?

I'd like to avoid looking at user_agent and sending a different page for each mobile browser.

flag

4 Answers

vote up 1 vote down check

See the configuring the viewport part of the Apple web-app developer guide.

link|flag
Right, this is what I thought the question was referring to. As an example, add a <meta> element that looks like: <meta name="viewport" content="width=480"> – Joe Liversedge Aug 3 at 18:05
Thanks! It works in Opera Mini as well. Not sure about other browsers.. – Fortress Aug 3 at 20:16
vote up 0 vote down

Sites can recognize a mobile browser and produce output accordingly, that's usually the desired way.

Safari will detect the width and zoom-to-fit, but beyond that...

link|flag
vote up 1 vote down

Seems to be based on the DOM. If you want it to zoom in, just make sure your page isn't too wide/tall on the mobile site.

link|flag
vote up 0 vote down

You can avoid having different pages based on User Agent by using conditional CSS. Apple actually has some very good documentation on creating web pages that can support Safari on the iPhone along with desktop browsers.

I would recommend starting with reading iPhone Human Interface Guidelines for Web Applications. This will give you a good start in using conditional CSS to customize pages on the basis of device characteristics (such as screen size) rather than User Agent.

link|flag

Your Answer

Get an OpenID
or

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