After reviewing some other questions, it seems that the z-index
issue in Firefox is often related to one of the items not being set as position:Absolute
.
<div id="AnimatedBanner" style="right:-5px;">
<object style="position:absolute; z-index:-1" width=" 1175" height="400" data="images/AnimatedBanner.swf"></object>
</div>
<div class="banner_text" style="position:absolute; z-index:1;">
</div>
Despite setting positions and z-index values correctly, the Animatedbanner
still displays on top of the banner_text
only in Firefox. Other browsers work fine, leaving me puzzled about what could be causing this issue.