Well, along the same lines...since I'm trying to deal with it...
In my index.php document I have in the style...
.innerbox {
filter:Progid:dXImageTransform.Microsoft.AlphaImageLoader
(enabled=true, sizingMethod=scale, src='imgs/bg-menu.png');
}
.innerbox[class] {
background: url(imgs/bg-menu.png) repeat;
}
.innerbox {
height: auto important!;
height: 100%;
}
which works great. Now, when I move this to the stylesheet as css/style.css and use this:
.innerbox {
filter:Progid:dXImageTransform.Microsoft.AlphaImageLoader
(enabled=true, sizingMethod=scale, src='../imgs/bg-menu.png');
}
.innerbox[class] {
background: url(../imgs/bg-menu.png) repeat;
}
.innerbox {
height: auto important!;
height: 100%;
}
it simply will not work in IE. The paths are correct. ??? Am I not seeing something completely dumb on the paths?
I won't even go into the problems with all of this and trying to place an inline list inside of the innerbox...I may have discovered a bug in Firefox, but oh well...
Edit: had to chonk around with that a little since the forum smilies system was inserting some junk...