To get the desired effect, make sure to utilize CSS3 multiple background images for the 'body'
elements and then incorporate CSS3 PIE for compatibility with Internet Explorer. You can find more information on how to do this at this link.
body{
background: url("/cranium/img/2 MAIN/bg.jpg") repeat 0 40px, url(headerbg.png) repeat-x left top, url(footerbg.png) repeat-x left bottom;
-pie-background: url("/cranium/img/2 MAIN/bg.jpg") repeat 0 40px, url(headerbg.png) repeat-x left top, url(footerbg.png) repeat-x left bottom;
behavior: url(PIE.htc);
}
Keep in mind that -pie-background
is relative to HTML, not CSS. By following these steps, you should be able to resolve any issues you are experiencing.