Forums

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

Home Forums CSS Background Image position Re: Background Image position

#83887
SgtLegend
Member

Yep sure do, instead of using a relative position use an absolute position so you end up with something like the below selector.

#content {
height: 600px;
left: 50%;
margin: -300px 0 0 -450px;
position: absolute;
top: 50%;
width: 900px;
}