UPDATE: I figured this out-I forgot I'd added some conditional css that targeted IE and it was interfering with the background image. another dumb pilot error. I have an image slider on a site that has a div with a partially transparent gradient background png image sitting on top of the slide image. It works in Firefox and I got it to work on a test site in IE8 but when moved to the production site, the background image fails to appear. Test site: http://uhiworldwide.com/ Production site: http://uhi.elementfx.com/?page_id=332
If I replace the css code on the non working site with the code from the working site it still doesn't work, so I think I'm doing something else wrong and not giving the IE beast what it needs.
The relevant bit of css is:
div.fp-content {
background:transparent url(http://uhiworldwide.com/wp-content/uploads/2012/11/slidebg2.png)
-150px 0px repeat-y ;
filter: progid:DXImageTransform.Microsoft.gradient(
startColorstr=#00FFFFFF, endColorstr=#00FFFFFF
);
}