Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
After moving to the Savor theme from Dawn, I find the product pictures to be to big on big screens. Is there an easy way to change the image size?
And is it possible to make the description part of the page bigger at the same time?
The url is: https://smashtennis.dk
Thank you
Solved! Go to the solution
This is an accepted solution.
Hi @RasmusF,
Please go to Customize > Theme settings > Custom CSS and add code:
@media screen and (width >= 750px) {
.product-information__grid:not(:has(.product-information__media:empty)).product-information--media-left {
grid-template-columns: 1fr 1fr !important;
}
}
Hi @RasmusF I have checked the customization option from the Savor theme and could find anything related resizing the image/product media width.
Only developer can fix this with custom css on the theme. Thanks!
For some reason it didn't work... After trying this solution, I went with the other solution, which was custom css. But thanks a lot for taking the time to write such an easy understandable guide.
This is an accepted solution.
Hi @RasmusF,
Please go to Customize > Theme settings > Custom CSS and add code:
@media screen and (width >= 750px) {
.product-information__grid:not(:has(.product-information__media:empty)).product-information--media-left {
grid-template-columns: 1fr 1fr !important;
}
}