Unable to scroll Amp'd pages ?

For some reason, you have this in your CSS:

uKi1gIq.png


It is blocking the ability to scroll. The fact that this happens on only AMP'd pages might be a quirk on AMP's side but regardless, should probably see why that's actually there.
 
strange indeed, in mobile view i see it as disabled/striked out and not able to scroll, but enabling it/checkbox it scrolls

upload_2017-5-21_6-54-2.png

just have to figure where it's coming from

if i search templates for (max-width:800px)

only one template is returned = nflj_showcase_thread_view.css
 
strange testing this more, on non-amp page the media query with max-width 800px for body still allows me to scroll in mobile but same query in amp page doesn't ?
 
strange testing this more, on non-amp page the media query with max-width 800px for body still allows me to scroll in mobile but same query in amp page doesn't ?
Seems like a quirk on AMP's side. I haven't had much of a chance to experiment with it over the weekend as I've been busy with other commitments but I should have a chance to look at it during this coming week.
 
Can we get a fix for this? Whatever it was that I fixed was lost in our latest style updates. Got to dig through and figure out what line of css was causing it.
 
Code:
@media (max-width:{xen:property xb_offcanvas_width})
{
    html, body
    {
        overflow: hidden;
    }

Inside xb_offcanvas_menu.css

Removing overflow: hidden; fixes it.
 
Back
Top