Hi Guys,
I want to make the product page similar to the attached photo. Please see the screenshot for a better understanding. I would appreciate your help.
Thanks in advance.
A user seeks help customizing their Shopify product page layout to match a specific design shown in an attached screenshot. They provide their store URL as a reference.
Another user responds with a CSS-based solution:
The discussion remains open, as the original poster hasn’t confirmed whether the solution worked. The proposed fix involves direct theme file editing, which requires some technical knowledge of CSS and Shopify’s theme structure.
Hi Guys,
I want to make the product page similar to the attached photo. Please see the screenshot for a better understanding. I would appreciate your help.
Thanks in advance.
Hi @basicbastardco
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css
@media screen and (min-width: 990px){
.product__media-gallery .product__media-list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
}
.product__media-gallery .product__media-list .product__media-item {
width: 100%;
max-width: 100%;
}
}