Sidebar menu in mobile view

The sidebar menu on: https://action.itworkscomputerrepair.com/rentals/ displays at the very bottom in mobile view. Can it be shown at the top of the page in mobile versions?

Thanks!

Hi there,

Please try this code in the Global CSS:

@media (max-width: 979px) {
    .x-container.max.width.offset {
        display: flex;
        flex-direction: column;
    }    
    
    .x-main.right {
        order: 2;
    }

    aside.x-sidebar.left {
        order: 1;
    }

}

You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.