How to create sticky product images on the Motion theme?

Hey,

Would anyone be able to help me make my product images sticky.

I am using the MOTION theme by Archetypethemes

My store url is: https://lilyspetportraits.myshopify.com/products/paw-trimmer-2-0

Cheers

@JordanBinnie

Please try this css

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-content {
 	 overflow: visible;
    .grid__item.medium-up--three-fifths, .grid__item.medium-up--one-half {
      position: -webkit-sticky;
      position: sticky;
      top: 100px;
    }
  }
}

Works great!

Cheers