How do I change my Latest Arrivals collection to show 2 columns of products on mobile on the homepage.
Desktop is fine the way it is.
Please see below for website:
Thanks in advance
How do I change my Latest Arrivals collection to show 2 columns of products on mobile on the homepage.
Desktop is fine the way it is.
Please see below for website:
Thanks in advance
Hi @Points ,
Go to Assets > theme.scss.liquid and paste this at the bottom of the file:
@media only screen and (max-width: 600px) {
#CollectionSection .grid__item {
width: 50% !important;
}
}
Hope it helps!
Thank you, exactly what I needed.