Scroll doesn't work on mobile (not overflow problem)

Thanks, Matt! I think I’ve figured out your issue, for the most part. On another page ‘Stylesheet’ you have a class defined called ‘no-scroll’, which is enabling overflow:hidden for your body on mobile. The strange part is that if I look for this class inside the styles manager, it even says that the class is not used on the Search Results page, but I can clearly see it being applied when I inspect the element on a mobile browser (more on how I did this here).

So, my solution to you would be to just delete this class, and I’d expect your issue to be solved. If this isn’t an option for you, an alternative workaround could be to add the below code snippet to an HTML embed on the Search Results page, or in the page’s custom code (before ). Please let me know which method you go with, and if the issue is resolved for you.

<style type="text/css">
    .no-scroll {
          overflow: visible !important;
          }
</style>