Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1261812

    Hello,
    I’m having the same issue here.

    Woocommerce + Enfold Theme:Mobile ViewIt's possible to move Sidebar view on top?

    I would like my product sidebar to be show on top on mobile view.
    https://www.officinadeiricordi.it/shop/

    Thank you!

    #1262227

    Hey marcie73,
    Sorry for the late reply, as I understand what you would like to do on your shop page, in mobile, you want the sidebar on top, then the content.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) { 
      #main > .container_wrap_first.template-shop.shop_columns_3 > .container {
      display: flex !important; 
      flex-wrap: wrap !important; 
      }
      #main > .container_wrap_first.template-shop.shop_columns_3 > .container > main {
          order: 3 !important; 
      }
      #main > .container_wrap_first.template-shop.shop_columns_3 > .container > aside {
          order: 2 !important; 
      }
      #main > .container_wrap_first.template-shop.shop_columns_3 > .container > header {
          order: 1 !important; 
      }
      }

    I don’t believe this will effect any other pages, but please check thoroughly.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.