I think I am having a similar problem and I've noticed what the problem is exactly, I'm just looking to see if anyone has found a way around it.
My website uses a ton of background images, all included in my CSS file. They work great in FF, but won't appear in IE. The problem is that they are either in a class or an ID.
For example, the following code works fine in any browser:
Code:
body {
background: url('../images/bg.jpg');
}
However as soon as you make your own class
Code:
.myClass {
background: url('../images/myClassBg.jpg');
}
and include it in your HTML file as such
Code:
<table width="100%" class="myClass">
the image will not appear. Is there any way of doing this in IE?
|