Archived topic
Horizontal scroll on mobile
3 replies · Started by Beniamino on May 7, 2021
Hi,
on the mobile version of the site there is an horizontal scroll which I can’t wrap my head around. The problem is only on two pages:
- home (https://www.enigmap.net/)
- challenge your friends (https://www.enigmap.net/sfida-gli-amici/)
Don’t understand where it’s coming from.
Thank you
Hi there,
on the home page there is a Container Block with just a background image ( indoor-scaled-1.jpg ) - the container block has 200px padding on all sides. Set the Left and Right to 0.
The archive page - thats much more complicated as the posts are pulling Block Elements that are little too wide for the article container.
As a catch all add this CSS to your site - it will stop unintended overflow:
html, body {
overflow-x: hidden;
}
It works...
Many thanks!!
Glad to be of help.