[ad_1]
[ad_2]
I have a website using some animations from out of the page. I have hence have this white margin all accross the page. How can I control that? I know I can zoom and full this but doesn't make sense for all to do the same.
Copyright © 2020 - 2022, Project DMC - WordPress Tutorials for Beginners- All Rights Reserved. Privacy Policy
Something is pushing the page wider than the viewport.
We have no idea what that could be unless we see the site ourselves.
mostly a container rendering 120% width of the mobile viewport
overflow-x: hidden
In custom css type this:
html,body {
overflow-x: hidden;
}
Or find element which is wider than 100% on mobile.