Okay
  Public Ticket #2162216
category fixed on top mobile version
Closed

Comments

  • autrementclothing started the conversation

    Hello,

    I have another problem:

    the category widget is normal (on my laptop) on the right side at the top.

    In the mobile version this isn't the case. It is on the bottom. 

    I want to know if it possible to fix this widget also on top at the mobile version?


    Kind regards

    Patrik Kinderknecht

  • [deleted] replied

    Hi Patrik,

    Sure you can achieve this with this Custom CSS:

    @media screen and (max-width: 768px) {
        
        .woocommerce .products-archive--sidebar {
            order: 1;
        }
        .woocommerce .products-archive--products {
            order: 2;
        }
    }

    This will fix your issue:

    medium
    (view large image)