Cannot use zoom for lightbox images on phones

As an FYI, it seems to be because of this meta tag

<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">

If you set it to

<meta name="viewport" content="width=device-width, initial-scale=1.0">

You get the same initial output and permit users to pinch and zoom.

3 Likes