I have a background image for a site that looks fine in firefox,chrome, and safari. IE however, the image shows up on the top of the page. what am i missing?
#background {
width: 100%;
height: 100%;
position: fixed;
left: 0px;
top: 0px;
z-index: -999; /* Ensure div tag stays behind content; -999 might work, too. */
opacity:.09;
filter:alpha(opacity=9);
}
.stretch {
width:100%;
height:100%;
}
html:
<div id='background'><img src='<?php echo $bg;?>' class='stretch'></div>
//rest of page//
where $bg is path to a image.