I recalled a much easier way to make it 'retroactive' to IE 5.5 & 6 PC. The filter:shadow -
Just add this in after the main style block:
Code:
<!--[if lt IE 7]>
<![if gte IE 5.5]>
<style type="text/css">
#br_shadow, #b_shadow, #tr_shadow, #bl_shadow, #r_shadow {
background-image:none;
}
#inside {
filter:progid:DXImageTransform.Microsoft.Shadow(strength=7,color=#636363,direction=135);
position:relative;
}
</style>
<![endif]>
<![endif]-->
Filters screw up text in IE 7, so I'm excluding it from this. IE 7 handles the .png alpha channel opacity just fine.
BTW, the demo page from the original post in this thread didn't work in IE 6 anyway, even with the BMP's and wattersisere's original css. The alignment of the images was off. Now it will, using the filter:shadow and a background color for text in the #inside division.
Bookmarks