How can I stop side scrolling in mobile view on my site?

Solved

How can I stop side scrolling in mobile view on my site?

buchanan215
Tourist
9 1 0

On my site in mobile view, i want to be able to just scroll up and down but I find i can side scroll a small amount.

 

Is there a way to prevent this from happening?

 

maui-now-2.myshopify.com/

 

Thank you in advance!!!!

Accepted Solution (1)

PageFly-Victor
Shopify Partner
7865 1786 3131

This is an accepted solution.

Hi @buchanan215 

This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

 

Online Store ->Theme ->Edit code

Assets ->Base.css

html, body {
overflow-x: hidden !important;
}

Hope you find my answer helpful!

Best regards,

Victor | PageFly

View solution in original post

Replies 3 (3)

PageFly-Victor
Shopify Partner
7865 1786 3131

This is an accepted solution.

Hi @buchanan215 

This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

 

Online Store ->Theme ->Edit code

Assets ->Base.css

html, body {
overflow-x: hidden !important;
}

Hope you find my answer helpful!

Best regards,

Victor | PageFly

buchanan215
Tourist
9 1 0

Thank you, Victor. Much appreciated.

ryanmaterial
Tourist
25 0 1

This works to fix the problem, but then prevents the sticky header from working when scrolling up. Any ideas how to fix this?