Remove a Scroll White Space to Right on Mobile

We had an issue come up with a website,which was scrolling right on mobile view only.

To resolve the issue, we added this custom CSS to stop the right scrolling..

@media only screen and (max-width: 768px){
    html,body{
    width:100%;
    overflow-x:hidden;
    }
}

 

The Ultimate Managed Hosting Platform