New Grid strangeness on mobile

Hi,

I am using the new grid option for the first time, and love it. However, I am seeing a weird thing happen on mobile. The site looks great on desktop and also looks good on mobile however you can “slide” the whole site to the left on mobile and then there is a blank space to the right. Not sure where I went wrong on this…

Site in private link.

Update: it is related to this code I added because I was getting the double scroll effect on the right.

body {
overflow-x: visible;
}

If I take that out it fixes mobile but the double scroll comes back.

Changing code to this:
@media (min-width: 768px) { body {
overflow-x: visible;
}
}
helps, however on an iphone when you try to scroll up initially it will not, then it will after you try again…

How can I fix both?

I found the fix, the page originally had no footer. So I added a blank black footer with height set to auto and that fixed it, I was able to delete the additional CSS. weird.

Glad you found the fix @wowflak.

Thank you for updating us. Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.