Fixed size webpage auto-zoom to 100% view?

Any idea how to auto-zoom 100% for any fixed width webpage?

To gain control over how your site displays on mobile, you need to use the meta viewport element in the head of your pages. We need to know a bit more about your site to know exactly how to configure it, but as an example, if your fixed width layout is, say, 1200px wide, you can add this to the head of your pages:

<meta name="viewport" content="width=1200, initial-scale=1">

You only need to do this if you pages are wider than about 980px wide.

I’m not sure if the initial-scale bit is needed in this situation, so try with and without.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.