Advertisement
borkolivic

Jevelin theme - moving sidebar above products on mobile

Oct 28th, 2020
2,586
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.27 KB | None | 0 0
  1. @media only screen and (max-width: 768px) {
  2.     .woocomerce-styling.sh-woocommerce-products-style2 {
  3.         display: flex;
  4.         flex-direction: column;
  5.     }
  6.     div#sidebar {
  7.         order: 1;
  8.         -webkit-order: 1;
  9.     }
  10.     #content.content-with-sidebar-left {
  11.         order: 2;
  12.         -webkit-order: 2;
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement