Hi there, could you please help with the code to change the collection list to 2 products per row on mobile?
Currently on desktop is set to 2, but mobile is displaying 1 product per row
Hi there, could you please help with the code to change the collection list to 2 products per row on mobile?
Currently on desktop is set to 2, but mobile is displaying 1 product per row
Hi @Tony1992
You can add this CSS code below at the bottom of your theme.css file to check
@media only screen and (max-width: 479px) {
.flickity-grid .product-grid-slide {
width: 48% !important;
}
}
Hi Dan,
That changed the Tab collection, but not the collection list further below
Misunderstood your mean. Please use this code
@media only screen and (max-width: 767px) {
.homepage-collection-grid .grid__item { width: 50% !important; }
}
Thank you, now the button text is too large, is there a way to scale this appropriately?
Add this addition code
.homepage-collection-grid .grid__item .btn--small.uppercase {
font-size: 11px !important;
}