solcean Posted September 2, 2020 Posted September 2, 2020 Site URL: http://solceanco.com Can anyone help me with making my product pages show products in rows of 2 or 3 in mobile format instead of stacked by one?
tuanphan Posted September 3, 2020 Posted September 3, 2020 Add to Home > design > Custom CSS @media screen and (max-width:767px) { .products.collection-content-wrapper .list-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-column-gap: 10px; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
solcean Posted September 3, 2020 Author Posted September 3, 2020 5 hours ago, tuanphan said: Add to Home > design > Custom CSS @media screen and (max-width:767px) { .products.collection-content-wrapper .list-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-column-gap: 10px; } } That worked perfect, thank you so much!!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.