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.
A user wants to modify their product page layout to display only 2 images at the top, rather than the default arrangement.
Solution provided:
flex-direction: columnThe discussion includes a visual reference image showing the desired layout and provides password-protected store access for context. The solution appears straightforward and actionable, though no confirmation of implementation success has been posted yet.
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.
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
}