Fixed background images not loading properly on touchscreen windows laptops

Hey @Alex_Villalpando,

We actually have some javascript in place which prevents fixed backgrounds images from rendering as fixed on touch screen devices. We do this because there are some known repainting css issues caused by fixed background images on elements (it’s also really heavy on CPU’s).

A work around which you can try is set a Fixed element as the background, try the following: Trouble with fixed background images not remaining fixed on touch screen devices - #3 by Brian_M_Fromknecht

  • Add in a div, call it “Fixed background” (or whatever you wish)
  • Set the div to Position: Fixed
  • Width: 100%, Height: 100vh (type in 100vh so that it takes up the full viewport)
  • Adjust the z-index of this element to sit behind all other elements :smiley:

Hopefully this is helpfully :bowing_man: