har denna formatering på en div tag
#wait
{
text-align: center;
position: absolute;
top: 50%;
left: 0px;
width: 100%;
height: 1px;
overflow: visible;
visibility: hidden;
display: block
}
#content
{
margin-left: -100px;
position: absolute;
top: -35px;
left: 50%;
width: 200px;
height: 70px;
visibility: hidden
}
Visar lagren med:
function Wait()
{
this.wait.style.visibility='visible';
this.content.style.visibility='visible';
}
Själva lagret:
<DIV ID="wait">
<div id="content">
<TABLE style="border: 1px dashed #333333;" WIDTH=200
HEIGHT=70 BORDER=1 BGCOLOR="#D6DFF7">
<TR>
<TD ALIGN=CENTER>
<IMG SRC="bild.gif">
</TD>
</TR>
</TABLE>
</DIV>
</DIV>
...men den lägger sig bakom dropdown-rutor...hur kan man lägga lagret framför?