Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Full Page Backgrounds on iOS (background-size: cover) Reply To: [Solved] Full Page Backgrounds on iOS (background-size: cover)

#210422
neevypops
Participant

Height 100vh fixed this for me

#wrapper {
background: url(“image”)
no-repeat center center fixed !important;
background-size: cover !important;
height: 100vh !important;
overflow: hidden !important;
}

#main {
height:100vh !important;
overflow: scroll !important;
-webkit-overflow-scrolling: touch !important;

}