0

Our text input field is centered in the screen and set up not to move. Behavior is proper on all platform variants except for Kik on iOS 7.1 and 8.
Here it is on the native 7.1 browser working properly.
Here it is inside kik with the content shifted up.

We've tried a couple workarounds like controlling scroll/animation/propagation, but nothing has worked.

What's the proper way to keep content from shifting on input inside Kik on the new iOS?

Maitreya
  • 1,237
  • 11
  • 13

1 Answers1

0

This is usually the result of using the meta viewport tag on mobile. If you have specified the viewport sizing to be exactly the device height/width then the iOS webview will move the webview around to accommodate the keyboard rather than resizing it.

Try removing device-width/height from the viewport declaration.

jairajs89
  • 4,495
  • 3
  • 18
  • 14