html viewport in iphone

css, html, iphone, viewport

Solution

Try this instead.

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />

Problem

kindly check on this website in an iPhone or iTouch: http://www.imageworkz.asia/sixsenses As u can see, the website appears to be "halved". I am currently using this meta viewport: ``` <meta name="viewport" content="width=device-width;initial-scale=0.5, maximum-scale=1.0"> ``` This doesn't seem to fix the problem. I am completely clueless to what I should do to fix this problem. Any ideas?

Original source