Move sidebar to top on mobile

Paul August 16, 2023 at 4:59 pm

Website is currently still in development, running on localhost. I want to move the sidebar to top on mobile. The sidebar has to be on the right side on desktop, but want to have it on top on mobile. Prefer to do this with jQuery also.

Replies (3)

  1. Paul August 16, 2023 at 4:59 pm

    Website is currently still in development, running on localhost. I want to move the sidebar to top on mobile. The sidebar has to be on the right side on desktop, but want to have it on top on mobile. Prefer to do this with jQuery also.

  2. Paul August 16, 2023 at 5:28 pm

    Solved it using code below.

    (function($) {
    if ($(window).width() < 991) {
    $("#woo-sidebar-wrapper").insertBefore("#woo-products-wrapper");
    }
    })(jQuery);
  3. Paul August 16, 2023 at 5:45 pm

    Not working as it should. With the CSS below it does, but prefer jQuery to get it working.

    @media only screen and (max-width: 991px) {
    .page-content-area > .row {
    display: flex;
    flex-direction: column-reverse;
    }
    }
  4. Spiracle Themes August 17, 2023 at 6:56 am

    Good to hear it 🙂

    Let us know if you have any questions

    Best Regards

Post a Reply

Reply To: Move sidebar to top on mobile
Your information: