Experiencing trouble with the parallax effect on mobile devices, where it seems that the total body size exceeds 100vh, resulting in a visible scroll bar at the side. Changing overflow-y from auto to hidden resolves the issue but cuts out part of the page content as well. Interestingly, this problem does not occur on desktop browsers. Any assistance would be greatly appreciated.
Screenshot: https://i.sstatic.net/unhXH.jpg
.selector-for-some-widget {
box-sizing: content-box;
}
header .carousel-item {
height: 100vh;
min-height: 350px;
background: no-repeat center center scroll;
-webkit-background-size: cover;
background-size: cover;
}
... (omitted for brevity)
<!doctype html>
<html lang="en">
<head>
... (more HTML code follows)