Kindly suggest what to do so the phone view doesn’t have all the products so huge, a view list would be better so the customer can scroll down comfortably.
Hi @aishaz ,
Go to Assets > styles.css and paste this at the bottom of the file:
@media (max-width: 767px) {
.collections-section .row.grid {
display: flex !important;
flex-wrap: wrap !important;
}
.collections-section .product-block {
width: 50% !important;
}
.collections-section .product-block .image {
min-height: auto !important;
}
.collections-section .product-block .title {
text-align: center;
}
}
Hope it helps!

