Home › Forums › Theme support › Prestige theme › Reply To: Prestige theme
Hi,
hm, not sure what went wrong, but there is a missing meta tag in the header. But it’s easy to solve, just add this code at the end of your functions.php file:
function sl_p_handle_viewport_error()
{
echo '<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />';
}
add_action("wp_head","sl_p_handle_viewport_error");
This will solve the problem