iOS 9.3 automatically zooms in to the forum page on mobile browser

Phatcows

Active member
Members who have recently updated their phones to iOS 9.3 are reporting that whenever they go to our forum main page, a thread, or post, the browser automatically zooms in very close and they have to double tap the screen to see everything (zoom out).

The iOS 9.3 members experiencing the problem are using the default theme. When we got them to change to the flexile theme, that fixed the problem but the members don't want to be stuck specifically to one theme.

We thought it might have been how the mobile safari browser handled fixed width webpages so we created a default style with a fixed width but after testing, it didn't fix anything.

I've searched on here (and Google) for similar reports but haven't found anyone with a similar issue.
 
Unfortunately this seems solely down to some CSS you have on your site:
Code:
/* 'Create Thread' Title Textbox was too big and edit box was too small! */

.textCtrl.titleCtrl, .textCtrl.titleCtrl input { 
font-size: 14pt;
}
.xenForm { 
margin: 10px auto;
width: 1000px;
}

You can see if you resize the browser, everything is a fixed width, and it has lost its responsiveness.
 
Top Bottom