Click to See Complete Forum and Search --> : Frames within Frames - HELP!!!!


Tulsa Shuffle
07-01-2003, 10:02 AM
Hi – I’ve got a web site with 3 frames (named ‘top’, ‘leftcentre’ &’ bottom’) - fairly self explanatory where they go but Top contains a graphic menubar which is present all the time and leftcentre is a skinny little frame just for cosmetic spacing. All site content is directed to the frame ‘bottom’.
What I want to do is to open an html file into the frame ‘bottom’ which itself is split into two frames, the top containing a dynamic menu bar which displays the contents of other html files (onMouseover) into the lower frame. I’ve got it all to work fine except I can’t seem to crack the bit about opening up two more frames within the original frame ‘bottom’. So far, all I can get it to do is open a brand new window (nearly there but not quite what I'm after!!) as I want all of the original frames (well, 'Top' and 'Leftcenter' with the two new frames within 'Bottom') to reamin on display.

Can anyone please help?

Khalid Ali
07-01-2003, 11:22 AM
this should do ...

<!-- frames -->
<frameset cols="14%,*">
<frame name="" src="" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">
<frameset rows="19%,*">
<frame name="" src="" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">
<frameset rows="50%,*">
<frame name="" src="" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">
<frame name="" src="" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">
</frameset>
</frameset>
</frameset>

Jonathan
07-01-2003, 12:59 PM
You can also do an iframe

Click here (http://www.htmlhelp.com/reference/html40/special/iframe.html) for more information.