camokat
07-18-2005, 12:05 PM
Hello,
I have a two layers that I want to place one on top of another, one layer is visible and the other is not. During loading the visiblity of layers is reversed:
<div id="buttonsWaitLayer" style="position:relative;
width:100%;
height:30px;
left: 0px;
top: 0px;
z-index: 4;
visibility:hidden"
class="wait_buttons">
Please wait, performing your request...
</div>
<div id="buttonsLayer" style="position:relative;
width:100%;
height:30px;
left: 0px;
top: 0px;
z-index: 3;
visibility:visible"
class="wait">
<jsp:include page='<%= buttonDirective %>' flush="true"/>
</div>
But here instead of two layers being one on top of another, I have buttonsWaitLayer NORTH and buttonsLayer SOUTH. What am I doing wrong?
thanks,
camokat
I have a two layers that I want to place one on top of another, one layer is visible and the other is not. During loading the visiblity of layers is reversed:
<div id="buttonsWaitLayer" style="position:relative;
width:100%;
height:30px;
left: 0px;
top: 0px;
z-index: 4;
visibility:hidden"
class="wait_buttons">
Please wait, performing your request...
</div>
<div id="buttonsLayer" style="position:relative;
width:100%;
height:30px;
left: 0px;
top: 0px;
z-index: 3;
visibility:visible"
class="wait">
<jsp:include page='<%= buttonDirective %>' flush="true"/>
</div>
But here instead of two layers being one on top of another, I have buttonsWaitLayer NORTH and buttonsLayer SOUTH. What am I doing wrong?
thanks,
camokat