Reputation: 7758
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
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