Hello,
I am trying to fix the text near my product picture when scrolling in my product page (theme prestige). When I scroll, the picture moves, but the text follows the screen movement. I would like the text and the picture to behave the same way, without following the screen movement.
What happens to me is:
https://abouolia.github.io/sticky-sidebar/examples/basic.html
And I would like that the red rectangle behaves like the green.
Thank you by advance! 
Hi @PierreC2 ,
The red square when scrolling down will automatically add css codes from the js file https://prnt.sc/OqVjh_KV6N5A. Please check the div with id=sidebar and the div with class=sidebar__inner
There are 2 ways to fix it:
- Please delete the js code to load more css
- Add the following css fix code so that the red square does not move when scrolling
.container #sidebar .sidebar__inner {
position: absolute !important;
top: 0 !important;
left: 0 !important
}
Hope it helps @PierreC2