Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
As of now, the shopify theme mobile view only shows two collections per row, and you must swipe to see more collections (Collection list). I would like to show three collections per row and then swipe. Would you be able to help me? I am familiar with codes, so you can provide them to me.
Store URL: https://www.ozonzone.com
Solved! Go to the solution
This is an accepted solution.
Hey @Digital_Imran,
Try this
@media only screen and (max-width: 768px) {
.collection-list {
display: flex;
}
.collection-list a {
flex-shrink: 0;
flex-basis: 25%;
}
}
This is an accepted solution.
Hey @Digital_Imran,
Try this
@media only screen and (max-width: 768px) {
.collection-list {
display: flex;
}
.collection-list a {
flex-shrink: 0;
flex-basis: 25%;
}
}
Thank you so much @ThePrimeWeb 🙂
Where do you insert this code?