DISABLE the Horizontal Scroll [closed]

Try adding this to your CSS

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

Leave a Comment