How To Stop The Slideshow From Moving Down The Screen When Scrolling (Impulse theme)

When you swipe/scroll down theres a animation where the image moves I want to stop it and keep the image still

Hi @AMOB

We checked and saw that the error is caused by a function assigned to the ‘scroll’ event in the theme.min.js file, which is mini-file (a shortened 1-line code), so it is impossible to find the exact function that handles the animated images.

You can solve the issue by:

  • Go to the theme.min.js file → Ctrl F to find the code
this.image.style.transform="translate3d(0, "+e+"px, 0)"

Then remove the above code.

  • The next is to go to the theme.js file (this is likely to be the file that will render the theme.min.js file, so there will be a similar image processing) → Ctrl F find the code
this.image.style.transform="translate3d(0

Remove that line of code that affects the image in theme.min.js:

I hope that it’s useful for you.