Having a issue where all mobile devices is zoomed 50% in at start. That is every device other than iPad. Tried to do a PHP check to scale 50% out if all other than iPad but when you moved from landscape -> portrait -> landscape it would then scale 50% out once again.
Here is my current meta tags:
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=640, height=700, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
My HTML does not use any width 100% only in px. Overall the content does not extend 640 width and 700 height.
Do anyone have any idea on how i could possible avoid this issue?
Edit
Came to the conclusion that @hakre was right about the scale of the pixels. My fix was to set every width in % rather than px. This way it auto sized no matter what. One thing to note is that i removed the scale. Reason why is that it seem to mess up the layout on some devices. Thanks once again @hakre