Hello, a few thing to try:
– Change the viewport to:
FROM:
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no">
To:
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
Also this css:
(css/custom.css)
html, body {
max-width: 100%;
overflow-x: hidden;
}
You can also try to remove some elements from the HTML just for test purpose to make sure which is causing the scroll.
Please try that and let me know if you need further assistance.
Kind Regards,
Jonas