On mobile: swiping on top of fixed items does not make the page scroll

Does anyone have a solution for this? My page is set up so as you swipe/scroll down the page, more and more content appears. The issue is that for some reason swiping to scroll on mobile (as you do) does not seem to operate to scroll the page if your finger is on top of a fixed object. So as the page fills with more and more content, it becomes impossible to scroll any further unless you are able to seek out the tiny gaps to grab the page underneath. I hope that makes sense…

Does anyone know how to make it so you can swipe-scroll while touching fixed objects?

the css value
pointer-events: none;
might be your solution.

Use the browsers dev-tools inspect mode to find your fixed div containing all your elements blocking the scroll.
then add the css rule to it in the custom code panel.

*without really seeing your project its difficult to check which one it is.

1 Like