All,
Finally got Firebug installed and started working the “z-index” settings.
Suggestion, from online sources, was to separate values by at least “10”, so did that. Nothing changes. Noticed my CSS for the active template has many negative numbers, and thinking maybe that is source of the problem? Does MSIE handle the negative or does it change them to absolutes?
Anyway the changes are not having any effect, but did have a couple changes that I had to go back to and clear.
Where I think the problem is, is in the two blocks of:
body
{
z-index: 0;
margin: 0 auto;
padding: 0;
background-color: #FFFFFF;
background-image: url('images/Page-BgTexture.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: bottom center;
}
and
.art-contentLayout
{
z-index: 300;
position: relative;
margin-bottom: 6px;
width: 786px;
}
.art-Block
{
position:relative;
z-index: 200;
margin:0 auto;
min-width:1px;
min-height:1px;
}
.art-Block-body
{
position: relative;
z-index: 110;
padding: 0px;
}
Where “body” contains the background image and the other contains the text that is showing in FF and not in MSIE.
Let me know what you think!
Thanks!
TBNK