Hey,
I need some help with increasing the amount of columns shown on mobile, you can by default show maximum 2 columns but i want to show 3.
my store: https://r1vex.myshopify.com/
Thanks for helping!
Right now:
How i want it to look:
Hey,
I need some help with increasing the amount of columns shown on mobile, you can by default show maximum 2 columns but i want to show 3.
my store: https://r1vex.myshopify.com/
Thanks for helping!
Right now:
How i want it to look:
@media screen and (max-width: 749px) {
.grid--2-col-tablet-down .grid__item {
width: calc(33% - var(--grid-mobile-horizontal-spacing) / 2) !important;
}
}
HELLO @WalletAces
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your section-collection-list.css file
Paste the below code bottom on section-collection-list.css
@media screen and (max-width: 749px) {
.collection-list.grid--peek.slider .grid__item:first-of-type {
margin-left: 0;
}
.collection-list.slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item{
width: calc(33% - var(--grid-mobile-horizontal-spacing));
}
}
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
Thank you this worked!
Hi! I have kinda the same issue, but what if I want to show maybe 4, 5 or 6 items instead of just 3? Thanks in advance!