Forum Replies Created

Viewing 1 replies (of 1 total)
  • In the child themes’ header.php, I removed the section:
    <meta name=”viewport” content=”width=device-width” />

    My twentyeleven header.php was this –

    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    <meta name="viewport" content="width=device-width" />
    <title>

    I changed it in my twentyeleven child theme’s header.php to this –

    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    <title>

    then In the child theme’s style.css I removed the max-width propery of the #page element and replaced it with width.

    twentyeleven’s style.css –
    #page { max-width: 1000px; }

    twentyeleven child theme’s style.css
    #page { width: 1000px; }

    This worked for me, although we’re not using the same theme hopefully it will work for too!

    [Please post code or markup snippets between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

Viewing 1 replies (of 1 total)