I have a frameset, with menus that use div. The top frame has this code:
My problem is that my layers won't lay over top of both the top and bottom frame. Is there any way I can have it so that the layer lays over both frames?
Jonathan
Code:
...
<DIV ID="cs2menu"
style="position:absolute; left:193px; top:45px;
width:120px; height:60px; z-index:1;
background-color:#FFFFFF; layer-background-color:#FFFFFF;
visibility:hidden">
<B>
<a href="" target="mainarea">CS2-XXXX</a><br>
<a href="" target="mainarea">CS2-1-XXXX</a><br>
<a href="" target="mainarea">CS2-2-XXXX</a><br>
<a href="" target="mainarea">CS2-3-XXXX</a><br>
<a href="" target="mainarea">CS2-4-XXXX</a><br>
<a href="" target="mainarea">CS2-5-XXXX</a><br>
</B>
</DIV>
...
and this is the frameset:
<HTML>
<HEAD>
<TITLE>Drawings</TITLE>
</HEAD>
<FRAMESET ROWS="10%,*" border=0 frameborder=0 framespacing=0>
<FRAME SRC="trial.htm" NAME="pre" NORESIZE>
<FRAME SRC="mainarea.htm" NAME="mainarea">
</FRAMESET>
<NOFRAMES>
<BODY>
</BODY>
</NOFRAMES>
</HTML>
My problem is that my layers won't lay over top of both the top and bottom frame. Is there any way I can have it so that the layer lays over both frames?
Jonathan