Unlike other responsive themes, I can’t resize my website page when I use the “touch” spread method on my IPad and IPhone. Is there a code I use to make this option available. http://www.dancingdeer.org
Hey Songdance!
Typically that is disabled on all responsive themes and sites. However, you can change the content meta values if you’d like by editing this line in your header.php file:
if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">';
see: http://css-tricks.com/snippets/html/responsive-meta-tag/
Specifically the maximum scale option which you should be able to just remove. Make sure to do this in a child theme if you don’t want to re-do the change after each theme update.
Best regards,
Devin