Home Forums Theme support Theme Cortina not responsive on mobile devices Reply To: Theme Cortina not responsive on mobile devices

Hi,

we’ve fixed this issue this weekend. There was a problem with the most recent WordPress update, but no it’s working without any problem.

If you want, you can open the file “functions.php” in the theme folder and add this code, this will solve the problem and you don’t have to update the theme.

function x_cortina_handle_viewport_error()
	{
	echo '<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />';
	}
add_action("wp_head","x_cortina_handle_viewport_error");