Minghui Yu
Minghui Yu

Reputation: 1363

CSS background image does not show up in IE 7 and 8

URL is http://site1.ewart.library.ubc.ca/node/255

The carousel on the page has a background image

#webcastingslideshow {
    background: url("images/webcasting/carousel_background.png") no-repeat scroll left   top transparent;
}

It works on FF (and Chrome) but not with IE 7 and 8. Instead, the background image does not show up in IE at all (just a white background).

I guess it might be some overlay of DIVs but I am not sure.

Any advice?

Thank you,

Upvotes: 1

Views: 1883

Answers (1)

Luke
Luke

Reputation: 1233

Add overflow: hidden to #webcastingslideshow.

Upvotes: 3

Related Questions