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
Hello everyone, I need help with my product page. When I scroll through the page, the description is quite lengthy, which creates a lot of white space. I’ve attached a screenshot for reference. Is it possible to make the product image stay fixed (sticky) until I reach the 'You may also like' section? Thanks in advance 🙂
My store URL: myperfectwear.com
Example store : https://threadheads.com/products/christmizzle-oversized-tee Yu can see if you open text image stuck until you reach the bottom
Solved! Go to the solution
This is an accepted solution.
.product {
position: relative !important;
}
.product > product-gallery.product-gallery {
position: sticky;
top: 100px;
}
https://img001.prntscr.com/file/img001/tYaNlcjLTb6h7MQ4L9v9Qg.png
I hope this helps
Best,
Daisy
This is an accepted solution.
.product {
position: relative !important;
}
.product > product-gallery.product-gallery {
position: sticky;
top: 100px;
}
https://img001.prntscr.com/file/img001/tYaNlcjLTb6h7MQ4L9v9Qg.png
I hope this helps
Best,
Daisy
Thank you so much @DaisyVo It works 🙂