After creating a mobile version of my webpage that functions well on Android and small browser windows, I encountered an issue with iOS. When users pinch the screen on iOS devices, it zooms out to fit the entire page, which is not ideal for a long page like mine.
I have tried using the following viewport meta tag:
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, shrink-to-fit=no">
Despite knowing about the known issue in iOS 10 with overriding user-scalable=no, I am experiencing the same problem on iOS 9 and 8 as well.
If anyone has any suggestions on how I can resolve this issue, I would greatly appreciate it.
Thank you