Burt
Burt

Reputation: 7758

Why does this website not scale to fit on the iphone on load?

The client is complaining that the site doesn't fit in an iphone screen, how come other websites rescale to fit the screen but the site below doesn't?

http://berrisford.gumpshen.com/

Upvotes: 1

Views: 944

Answers (1)

user142019
user142019

Reputation:

Because it has a viewport meta tag which doesn't allow so:

<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=0;" />

Upvotes: 3

Related Questions