Hi @hannahlincoln,
Thanks for reaching out.
I just tried it and I can only zoom it in, can’t zoom it out. What IOS and browser version you’re testing it with?
For the meantime, please install a child theme to your site and add this _meta.php to the folder /wp-content/themes/pro-child/framework/views/global/ with this content
<?php
// =============================================================================
// VIEWS/GLOBAL/_META.PHP
// -----------------------------------------------------------------------------
// Outputs meta data into the <head> of the site.
// =============================================================================
?>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<title><?php wp_title( '' ); ?></title>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
Though, that also disables the zoom in, which may affect the usability especially for people having a hard time reading on phones.
Thanks!