Forums

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

Home Forums Design Background image height problem – not fitting to the screen Reply To: Background image height problem – not fitting to the screen

#265225
JeroenR
Participant

Your body hasn’t the full height of the screen. And the background size you now use (100%, 100%) looks therefore out of scale.
You can add something like this to your stylesheet:

html, body {min-height: 100%;}
body {background-size: cover;}