I want my collection page look like this
it looks like this now
can anyone help me?
website: www.sundaypaloma.com
thank you ![]()
I want my collection page look like this
it looks like this now
can anyone help me?
website: www.sundaypaloma.com
thank you ![]()
Can I have the code here? thanks ![]()
Sure here you go, just paste this in css file
.product-card .product-card__image {
height: 400px;
}
.product-card .product-card__image img {
object-fit: cover;
height: 100%;
}
Quick thing you can adjust the height by changing that 400px, according to your need
Hello @oscaroline ,
You can try to follow these steps:
Go to Online Store โ Themes โ Actions โ Edit code
Go to Assets folder โ base.css file โ add this following code at the bottom of page
.product-grid-item {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.product-item {
flex-basis: calc(33.3333% - 20px);
margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
.product-item {
flex-basis: calc(50% - 20px);
}
}
Save changes
Hope this can help. Let us know if you need any further support.
Ali Reviews team.
Oh it doesnโt work ![]()