Home › Forums › CSS › Background Image position › Re: Background Image position
July 24, 2011 at 1:05 pm
#83887
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;
}