Allow Zooming on a Mobile
« on: February 02, 2021, 05:23:06 AM »
i wanted my users to be able to zoom in on the screen to see the images better so i changed this line in head.php -

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

TO

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

It seems to work for me

Anyone see any potential problems?

Marked as best answer by anthony.marshall on February 12, 2021, 03:46:42 PM
*

MB Themes

Re: Allow Zooming on a Mobile
« Reply #1 on: February 08, 2021, 09:27:51 AM »
@Anthony
You could change maximum-scale=1.0 into maximum-scale=5.0 to allow 5x zooming
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

Re: Allow Zooming on a Mobile
« Reply #2 on: February 12, 2021, 03:46:07 PM »
@Anthony
You could change maximum-scale=1.0 into maximum-scale=5.0 to allow 5x zooming

@MB Themes

Thank you!