I was experiencing an issue where Safari on iOS iphone would zoom in on text fields as shown in the image below.

The fix was found on Stackoverflow’s “Disable Auto Zoom in Input “Text” tag – Safari on iPhone” article as well as on Warren Chandler’s “Preventing iPhone From Zooming” article.
Put simply, you either need to update your css so that the text size is greater than 16px AND the “select:focus” is set to 16px:
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
font-size: 16px;
}
OR update the header meta tag so it disallows the zoom entirely:
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
Afterward, the textfields no longer zoom in:

Is this helpful?
More posts from themightymo.com
The Mighty Moo! WordPress Theme Update
About 1 year ago, I built The Mighty Moo! WordPress theme. It is a fun theme that features an AJAX “accordion” navigation system built on MooTools and MooFx. Today, I spent much of the day updating the theme so that more novice users will be able to use it out-of-the-box. It isn’t quite ready for…
Testing Out Intense Debate
Today I spent some time installing Intense Debate (ID) on cryns.com. ID is a nice, little plugin for WordPress (fyi: ID was purchased by WordPress’ parent company in September 2008) that manages your comments. With WordPress 2.7’s threaded comments feature, ID’s feature set isn’t all that much of an improvement. But ID recently announced that…
Make WordPress Work for You: How to turn your self-hosted WordPress blog into a totally rocking Content Management System (CMS)
WordPress Presentation What we might cover How many people have a website or blog? Brainstorm ideas for websites. What do you want your website to do? WordPress as a CMS Examples: GBSSA.org, TeamUpMn.org, Letronica.com (http://www.letronica.com/content/), cryns.com Switching WordPress from a Blog to a CMS Photo Gallery: http://www.cryns.com/category/photos/ Post by email iPhone Application Cool Plugins: Podpress…