in IE 8 the slideshow at the top overflows to exactly below the div its supposed to be contained inside. does it have something to do with the negative margin?
Container div:
#header{
background:#190000;
width:1024px;
height:216px;
}
Slideshow divs:
.slideshow {
float:left;
height: 216px;
width: 1023px;
margin-top:-192px;
overflow:hidden;
z-index:1;
}
.slideshow img {
padding: 0 0 0 0;
height:216px;
width:1023px;
border: none;
}