Hi, i changed the size of the product pictures and now the product title is to far down as you can see in the picture. Can i change it with a code?
url: https://ba571d-cc.myshopify.com/
dawn theme 15.0.0
Thank you.
Hi, i changed the size of the product pictures and now the product title is to far down as you can see in the picture. Can i change it with a code?
url: https://ba571d-cc.myshopify.com/
dawn theme 15.0.0
Thank you.
@store095 hope you are doing well.
Just customize the setting first and it’ll automatically set for you. Once you select the actual product then it’ll display properly.
Currently, it is just for an demo purpose
.card--card .card__inner .card__media {
width: 100% !important;
height: 100% !important;
}
.card--card .card__inner.ratio {
width: 85% !important;
height: 75% !important;
}
Its working. Thank you
Glad to help you. Have a good day.
Is it possible to do the same on the mobile version too?
Best regards
Yes. Let me check!
@media only screen and (max-width: 750px) {
.card--card .card__inner .card__media {
width: 100% !important;
height: 100% !important;
}
.product-card-wrapper .card__inner.ratio {
height: 75% !important;
width: 85% !important;
}
}
Can you add more this code @store095