Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #450856

    Hello,
    I’m trying to add some extra margin space between columns on the products grid from WooCommerce.

    Since I’m not familiar with the styles used in Enfold, how can I increase the space between columns for each breakpoint of the responsive design?

    I’ve already created this rule:

    .shop_columns_3 .products .product {
    	 margin: 0 7% 7% 0;
    	width: 28.6%;
    }
    

    Thanks,

    Adam

    #451607

    Hi yoeladam!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 767px) {
    .responsive #top #main .products .product {
      margin: 0 8% 1% 0;
      width: 42%;
    }}

    Cheers!
    Yigit

    #452435

    Perfect! thank you for the CSS

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘add margin space between WooCommerce columns’ is closed to new replies.