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
I want my product size smaller in mobile view. I am Referencing images to you
My Website: https://houseofsneakers.in/
Reference website: https://hypestockexchange.in
Want small product in first website house of Sneakers you can see difference between them!!
Solved! Go to the solution
This is an accepted solution.
Hi @Emiway , go to theme.css and add the following code :
@media (max-width:990px){
.product-list__inner--scroller {
grid-auto-columns: 40vw !important;
}
}
Result:
This is an accepted solution.
Hi @Emiway , go to theme.css and add the following code :
@media (max-width:990px){
.product-list__inner--scroller {
grid-auto-columns: 40vw !important;
}
}
Result:
Hi, @Emiway.
Follow These steps,
Go to the online store theme and go to base.css file paste the code mentiond below.
@media (min-width: 320px) and (max-width: 767px) {
.product-list__inner--scroller {
grid-auto-columns: 32vw !important;
}
}
Result:
If I managed to help you then, don't forget to Like it and Mark it as Solution!