Osclass Support Forums

Osclass theme support => Sigma Osclass Theme => Topic started by: Anthony Marshall on February 02, 2021, 05:23:06 AM

Title: Allow Zooming on a Mobile
Post by: Anthony Marshall 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?
Title: Re: Allow Zooming on a Mobile
Post by: MB Themes 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
Title: Re: Allow Zooming on a Mobile
Post by: Anthony Marshall 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!