Solved

Fixed/Sticky Product Imaged on Page scroll. VENTURE theme.

HelpX
Tourist
8 1 15

Hi Friends!

Here's how you can make product images sticky on scroll on Venture template.

 

1- Click on Online store => Actions => Edit code => theme.scss.liquid

2- At the very bottom of the code paste the following code:

 

@include media-query($medium-up) {
  .template-product .page-container {
 	 overflow: visible;
    .grid__item.medium-up--three-fifths {
      position: -webkit-sticky;
      position: sticky;
      top: 100px;
    }
  }
}

3- Click save! And it should work.

 

Screen Shot 2019-10-04 at 4.14.30 pm.png

 

Accepted Solution (1)

HelpX
Tourist
8 1 15

This is an accepted solution.

UPDATED VERSION FOR PRODUCTS WITH ONE AND MORE PHOTOS

 

Here's how you can make product images sticky on scroll on Venture template.

 

1- Click on Online store => Actions => Edit code => theme.scss.liquid

2- At the very bottom of the code paste the following code:

 

@include media-query($medium-up) {
  .template-product .page-container {
 	 overflow: visible;
    .grid__item.medium-up--three-fifths, .grid__item.medium-up--one-half {
      position: -webkit-sticky;
      position: sticky;
      top: 100px;
    }
  }
}

3- Click save! And it should work.

 

Screen Shot 2019-10-04 at 4.14.30 pm.png

 


 

View solution in original post

Replies 20 (20)