The following code does not fit onto the iphone screen; how do I have to define the viewport?

<html>
<body>
<center>
<div id="karteu" style="background: url('../customer/Karten/karte1.jpg') no-repeat left center;width:714px;height:540px;" >
</div>
</body>
</html>

Normally the site should be zoomed, so i first should see the website in small, and then be able to zoom that i see it in the original size, but in my case it does not, when i call the site, the zoom is, that the image has this original size already, and that i have to scroll, but i dont want to scroll,...i want to use the normal safari mobile zoom and then scroll

The solution at the bottom does not zoom anything. I want to see the overview of the image at the beginning. Then i want to be able to zoom with the normal safari zoom functions,..

link|improve this question

67% accept rate
there is no code... – oezi Apr 20 '10 at 7:32
you might want to edit your post with some more information – Ondrej Slinták Apr 20 '10 at 7:33
@oezi, @Ondrej: The question was badly formatted; now fixed. – RichieHindle Apr 20 '10 at 7:37
Isn't iPhone's resolution 480x320? Can you display 714x540 DIV on that screen? I'm just guessing why it doesn't fit... – Cipi Apr 20 '10 at 7:42
feedback

1 Answer

<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
link|improve this answer
Thank you! Above answer works! Only thing is, you have to also make your width = 100% !! Had to go into the code in Dreamweaver, which I use, and change the css style sheet to width of the container is not 320 pixels, but 100%. Now it works beautifully on both my ipod touch and the android phone. – Ellen Jan 23 at 21:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.