• Hi,

    When I choose the “Mobile Sidebar Order” in the General Settings in the Customizer, nothing is happening. I am setting it to “Sidebar / Content”, but on the website it always seems to be “Content / Sidebar”. Is it possible to put the sidebar on top of the content?

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi,

    ​Please try to add the below CSS code from the Appearance > Customize > Custom CSS, and check.

    @media only screen and (max-width: 959px){
    #main #content-wrap.container {
        display: flex;
       flex-direction: column;
    }
    
    div#left-sidebar-inner {
        order: 1;
    }
    div#right-sidebar-inner {
        order: 2;
    }
    div#primary {
        order: 3;
    }
    }
Viewing 1 replies (of 1 total)

The topic ‘Mobile Sidebar Order’ is closed to new replies.