Hello, we have pictures of goods in search of different formats, how to fix it?
This topic has 3 replies, 2 voices, and was last updated 4 years, 2 months ago ago by Goostaf
Hello, we have pictures of goods in search of different formats, how to fix it?
Hello,
Add the below code to Theme Options > Custom CSS
.content-product .product-content-image img {
width: auto;
max-height: 300px;
}
.content-product .product-content-image {
min-height: 300px;
max-height: 300px;
display: flex;
justify-content: center;
align-items: center;
}
@media only screen and (max-width:480px) {
.content-product .product-content-image {
min-height: 180px;
max-height: 180px;
}
.content-product .product-content-image img {
max-height: 180px;
}
}
Regards
Thank you:)
The issue related to '‘Miniatures in search of different sizes’' has been successfully resolved, and the topic is now closed for further responses