Hello, I am trying to write a code in the prestige theme to sticky product images while scrolling the product page
Can any body please help, I really need your help.
A user needed help making product images sticky while scrolling on a product page in Shopify’s Prestige theme.
Solution provided:
position: sticky with top: var(--header-height) for the .product-gallery elementOutcome:
The original poster confirmed the solution worked and implemented it successfully, also updating their theme.css file. The issue is now resolved.
Hello, I am trying to write a code in the prestige theme to sticky product images while scrolling the product page
Can any body please help, I really need your help.
On your product page in Customizer, go to “Product page” section and paste this code into “Custom CSS” setting:
@media (min-width: 1000px) {
.product-gallery {
position: sticky;
top: var(--header-height);
}
}
Hi @Shelly3006
Could you share the link to your product page?
Thanks Tim, it was easy yet so difficult to find on the web. I updated theme.css as well.
Really appreciate it.