Lego2012
12/14/2016 - 2:15 PM

Head Section

Head Section

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

<!-- Below is the code to add a Viewport meta tag to your site: -->

//* Add Viewport meta tag for mobile browsers (requires HTML5 theme support)
add_theme_support( 'genesis-responsive-viewport' );

<!-- Below is the code to add a custom Viewport meta tag to your site: -->

//* Add custom Viewport meta tag for mobile browsers
add_action( 'genesis_meta', 'sp_viewport_meta_tag' );
function sp_viewport_meta_tag() {
    echo '<meta name="viewport" content="width=device-width, initial-scale=1.0"/>';
}