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
Hi everyone,
I want to change the product images like the image below:
Only 2 images on top of the product page
The website is: https://uncutgemsnl.myshopify.com/
pw: shaupu
Thanks in advance.
Solved! Go to the solution
This is an accepted solution.
Hi @uncutgemsnl,
First thing you wan to do is go to the Theme Editor -> Click Product Information Section -> Set "Desktop Layout" to "2 Columns".
Then you can add CSS to the section Product Information Section -> Custom CSS -> Paste in this:
.product--columns {
flex-direction: column !important
}
.product__media-wrapper {
width: 100% !important;
max-width: unset !important
}
This is an accepted solution.
Hi @uncutgemsnl,
First thing you wan to do is go to the Theme Editor -> Click Product Information Section -> Set "Desktop Layout" to "2 Columns".
Then you can add CSS to the section Product Information Section -> Custom CSS -> Paste in this:
.product--columns {
flex-direction: column !important
}
.product__media-wrapper {
width: 100% !important;
max-width: unset !important
}