On mobile and tablets I get page wobble a.k.a page overflow. Is there a way we can add.
html, body {
max-width: 100%;
overflow-x: hidden;
}
On mobile and tablets I get page wobble a.k.a page overflow. Is there a way we can add.
html, body {
max-width: 100%;
overflow-x: hidden;
}
We will check the issue.
Yes you can add this code only on tablet and mobile. Copy the following code and paste it on Site Settings > Advanced > Header Code.
<style>
@media screen (max-width: 1024px) {
html, body {
max-width: 100%;
overflow-x: hidden;
}
}
</style>
Solves the issue for me. Cheers!