How to make product picture follow scroll down along text?

Solved

How to make product picture follow scroll down along text?

Kreamch
Excursionist
34 0 6

Hello,
I would like to include a feature in my product page that when scrolling down, only the information on the right side scrolls, however the product pictures as well as breadcrumbs follow down until reaching the end of the product page (meaning that they stay in place visually and text scrolls). The theme I am using is Pipeline, and the website is Kream.ch 
Below two pictures as a reference. 

ScrollDown.png

Scrolldown2.png

  

Would this be possible?
Thank you very much for your support!

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
11288 2212 2382

This is an accepted solution.

Hi @Kreamch 

You can do that by adding this code to Custom CSS in Online Store > Themes > Customize > Theme settings 

@media (min-width: 990px) {
.product__media__wrapper {
    position: sticky;
    top: 40px;
}
}

- Found this helpful? Hit "Like" and "Accept as Solution"! - Feeling generous. Buy me coffee!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

View solution in original post

Replies 2 (2)

Dan-From-Ryviu
Shopify Partner
11288 2212 2382

This is an accepted solution.

Hi @Kreamch 

You can do that by adding this code to Custom CSS in Online Store > Themes > Customize > Theme settings 

@media (min-width: 990px) {
.product__media__wrapper {
    position: sticky;
    top: 40px;
}
}

- Found this helpful? Hit "Like" and "Accept as Solution"! - Feeling generous. Buy me coffee!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

Kreamch
Excursionist
34 0 6

HI dan,

looks like it's working perfectly, thank you!