Home Forums Theme support responsive design Reply To: responsive design

Hi,

I saw in the header of the theme is missing a special tag for smaller screens. Do you use plugins? Maybe one of the plugins has removed the action call for the function…

However, the most easiest way to fix it is to open the file “Functions.php” in the theme folder and add this code to the end of the 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");