Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
);

}
share|improve this question

closed as not a real question by George Stocker Nov 19 '12 at 16:04

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

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.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.