How to make collection themes look like this (the space between images and layout size) and make Image size 202x302
Thanks : )
How to make collection themes look like this (the space between images and layout size) and make Image size 202x302
Thanks : )
Hey thanks for your reply I have done it now it has become vertical
Actually both looks good can u give them both please
I will do some comparison Thanks
You want your collection photos to always be 202 x 302 ?
Add this code to the end of base.css file
.card-wrapper .card__media {
width: 202px;
height: 302px;
}
I think you should not fix the size of the image because it won’t be responsive to many types of screens
@NOT1 , sure bro try add this code to the end of base.css file
@media only screen and (max-width: 768px) {
.collection-list {
flex-wrap: nowrap!important;
overflow: auto!important;
}
}
Thanks ![]()
No problem, glad to help you ![]()