Forums

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

Home Forums CSS Background image – resizing window issue Re: Background image – resizing window issue

#110958
Hobag_Beasty
Member

Thanks for the tip. What I ended up doing on my own, which seemed to fix it, was the following:

body
{
background:
url(without_face_700high.png) 20% 100% no-repeat fixed; background-size:contain;

}

It’s a bit of a cheat. I redid the image to include some transparent space in the png (went from 666 to 700 in height). Then used contain. Seems to work on the resize now.