Advertisement
Guest User

Shopifiq 5 columns

a guest
Apr 24th, 2014
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.60 KB | None | 0 0
  1. .home ul.products {
  2.     margin-left: -1%;
  3.     margin-right: -1%;
  4. }
  5.  
  6. .home ul.products li.product {
  7.     height: 470px;
  8.     margin: 0 1%;
  9.     width: 18%;
  10. }
  11.  
  12. .home .product .desc { height: 130px; }
  13. .home .last, .home .first { clear: none; }
  14.  
  15. @media (max-width: 959px) {
  16.     .home ul.products li.product {
  17.         height: 440px;
  18.         width: 31%;
  19.     }
  20.     .home .product .desc { height: 100px; }
  21. }
  22.  
  23. @media (max-width: 767px) {
  24.     .home ul.products li.product {
  25.         width: 48%;
  26.     }
  27. }
  28.  
  29. @media (max-width: 479px) {
  30.     .home ul.products li.product {
  31.         height: auto;
  32.         width: 98%;
  33.     }
  34.     .home .product .desc { height: auto; }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement