hi, i like to disable the zoom in and zoom out in ipad.
in demo of enfold theme of themeforest works ok, but in web.sweetmary-cakes.com not. in horizontal mode works oks but in vertical not.
in http://www.coronatolive.com works zoom in horizontal and vertical mode. i want to disable it.
the zoom in ipad do a little problem with styles in header.
thankss.
xavier.
Hey xpoveda!
You need to set the Theme to one of the responsive layouts in the Theme Options>General Settings:
Regards,
Devin
hi devin, all my sites have enabled responsive layout.
in horizontal mode ipad runs ok but in vertical mode allow zoom.
an idea?
best regards.
xavier.
You can force remove the ability if you really want to though it isn’t always great user experience to do so. You would edit this in the header.php:
<?php
if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">';
?>
to
<?php
if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable = no">';
?>
solution perfect.
runs ok.
thsnks for your help Devin
xavier.