Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

div layers do not lay over two different frames.

Status
Not open for further replies.

skills

Programmer
Jun 24, 2003
60
US
I have a frameset, with menus that use div. The top frame has this code:

Code:
...
<DIV ID=&quot;cs2menu&quot;
   style=&quot;position:absolute; left:193px; top:45px;
          width:120px; height:60px; z-index:1;
          background-color:#FFFFFF; layer-background-color:#FFFFFF;
          visibility:hidden&quot;>
   <B>
   <a href=&quot;&quot; target=&quot;mainarea&quot;>CS2-XXXX</a><br>                  
   <a href=&quot;&quot; target=&quot;mainarea&quot;>CS2-1-XXXX</a><br>               
   <a href=&quot;&quot; target=&quot;mainarea&quot;>CS2-2-XXXX</a><br>
   <a href=&quot;&quot; target=&quot;mainarea&quot;>CS2-3-XXXX</a><br>
   <a href=&quot;&quot; target=&quot;mainarea&quot;>CS2-4-XXXX</a><br>
   <a href=&quot;&quot; target=&quot;mainarea&quot;>CS2-5-XXXX</a><br>
      </B>
</DIV>
...
and this is the frameset:

<HTML>
<HEAD>
<TITLE>Drawings</TITLE>
</HEAD>
<FRAMESET ROWS=&quot;10%,*&quot; border=0 frameborder=0 framespacing=0>
  <FRAME SRC=&quot;trial.htm&quot; NAME=&quot;pre&quot; NORESIZE>
  <FRAME SRC=&quot;mainarea.htm&quot; NAME=&quot;mainarea&quot;>
</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
 
not that i know of

<signature>
sometime you just gotta say &quot;WHAT THE @#*% !!&quot;
</signature>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top