I have a fixed, cover, no repeat background on my site using the following CSS Class, however this issue seems to happen on all sites using this method:
.bg-image {
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
The problem here, however, is that on the mobile version of chrome, the URL bar at the top disappears as you scroll down the site. This means the viewport size changes, causing the background to jump, here is an example from the css-tricks site (Use a mobile device):
https://css-tricks.com/examples/FullPageBackgroundImage/progressive.php
How can I stop the background image from jumping and resizing as the URL bar appears and disappears? I have seen many, many supposed solutions- but all are from 5-6 years ago and no longer work, see below:
Background image jumps when address bar hides iOS/Android/Mobile Chrome