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 All,
I am wondering how we can achieve this sort of layout on Shopify Impulse theme.
https://www.overland.com/products/lucas-sheepskin-coat-11816?cl=vnb2
I want to have all my product info on the left, and have the images as a gallery which users can scroll, as opposed to swiping thumnails in a gallery.
Hi @Jarniansah,
I am from Mageplaza - Shopify solution expert.
To achieve a product page layout similar to the page you provided on the Shopify Impulse theme, with product info on the left and a scrollable gallery on the right, you can follow these steps:
<div class="product-page-layout">
<div class="product-info">
{{ product.title }}
{{ product.description }}
<!-- Add more product details here -->
</div>
<div class="product-gallery">
{% for image in product.images %}
<img src="{{ image.src | img_url: 'large' }}" alt="{{ image.alt }}" class="gallery-image">
{% endfor %}
</div>
</div>
.product-page-layout {
display: flex;
gap: 20px;
}
.product-info {
flex: 1;
}
.product-gallery {
flex: 2;
overflow-y: auto;
height: 100vh; /* Adjust height as needed */
display: flex;
flex-direction: column;
gap: 10px;
}
.gallery-image {
width: 100%;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
const gallery = document.querySelector('.product-gallery');
gallery.style.scrollBehavior = 'smooth';
// Optional: Add custom scroll indicators or navigation
@media (max-width: 768px) {
.product-page-layout {
flex-direction: column;
}
}
I hope this information proves helpful to you. Feel free to leave a comment if you require any additional assistance or further clarification!
Mageplaza | Top-Rated Shopify Agency | Trusted by 230,000+ worldwide merchants
If our suggestion works for you, please give it a Like or mark it as a Solution!
Should you have any questions or concerns, feel free to contact us via consultant@mageplaza.com