• Ok, so I am in the process of hacking apart the 2012 theme to create a customer website for the community center I work for. No, I didnt do a child theme, because I am a dummy and just didnt. Dont scold me now, its too late.

    Moving on.

    So the 2012 theme has that toggle mode, when the screen gets down to below 600 px it switches to almost a fake mobile theme. Kinda cool idea, but we pay for a mobile site separate so I wanted to disable that. Through dinking around in the CSS, I found if you simply change `/* Minimum width of 600 pixels. */
    @media screen and (min-width: 600px)`
    to

    /* Minimum width of 10 pixels. */
     @media screen and (min-width: 10px)

    It disables that toggle. However, if your window is any smaller than 1000 px, you start losing part of the navigation and the smaller you get the more of the page you cannot see. And it is locked in place and you cannot scroll across the page at all. Any suggestions?

    https://charlestonjcc.org/newsite/dir/

  • The topic ‘Twenty Twelve Theme – Disabled toggle mode but now cant scroll accross’ is closed to new replies.