It took me a while to get this design to work in IE7,Firefox and Safari. This was mainly due to different levels of background images used in the main #wrapper and another in the inner #container. Eventually I found this information which works in all 3 after some div order adjustment.
Doesn’t work in Safari
#example {
background:#000000 url(./dir/image.jpg) top left no-repeat;
}
Does work in Safari
#example {
background:#000000 url(./dir/image.jpg) no-repeat left top;
}

















Post a Comment