I have a big problem with mobile devices,
seems that there is no option for the user to zoom in (with the finger ‘zoom-in’ motion).
How can i fix this ?
(it is very important that this option will be available)
thanks
Hey nimrodmadar!
Open header.php, look for line 44:
if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">';
Replace by with this:
if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width">';
Regards,
Josue
thanks !