• Closed
  • John Greene
    Spectator
    January 2, 2018 at 8:57 pm #36098

    Is there a way to disable the sidebars in Evolve for mobile devices only? I’d like the desktop/tablet version of my site to include the sidebars, but they make the site hard to use in the mobile version.

    Thanks!

    Priyank
    Spectator
    Posts: 747
    January 3, 2018 at 6:15 am #36100

    Hi,

    Add custom CSS to your additional CSS area.


    @media only screen and (max-width: 768px) {
    #secondary {
    display: none;
    }
    }

    Thank You

    John Greene
    Spectator
    Posts: 8
    January 3, 2018 at 2:50 pm #36102

    Thanks! I tried the code but am still seeing the sidebars when viewing on a mobile device. I’m using the 2 column Left/Right format for Deskto, and on mobile the left column is above the content and the right column is below, which makes the site hard to use from a mobile device.

    Priyank
    Spectator
    Posts: 747
    January 4, 2018 at 6:34 am #36104

    Hi,

    Add custom CSS to your additional CSS area.


    @media only screen and (max-width: 768px) {
    #secondary,#secondary-2 {
    display: none;
    }
    }

    So, Sidebar Doesn’t show in Mobile Device.

    Thank You