Hi "levi2251",
If I'm NOT mistaken, if what you're trying to do is something like this:
+-------------------------------------------------+
| srcname.htm
+-------------------------------------------------+
| srcname2.htm | srcname3.htm
+-------------------------------------------------+
then try the following codes:
Code:
<FRAMESET rows = "20%,80%">
<FRAME src = "srcname.htm">
<FRAMESET cols = "25%,75%">
<FRAME src = "srcname2.htm">
<FRAME src = "srcname3.htm">
</FRAMESET>
</FRAMESET>
The correct usage for nested frame sets is as follow:
Code:
<FRAMESET ...
<FRAMESET ...
</FRAMESET>
</FRAMESET>
P.S.: Be sure to use the Frameset Document Type Definition (DTD) for your HTML document so the browser would render/display the page correctly.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
:
:
</HTML>
---------- Post added at 05:36 AM ---------- Previous post was at 05:08 AM ----------
Hi "levi2251",
By the way,
1. if you don't like to have the border around the frame(s), you can turn if OFF with the "frameborder" attribute,
2. also, if you don't want the viewer(s)/visitor(s) to resize your nested frame(s), you can disallow it using the "noresize" attribute.
P.S.: You can find all other <FRAME> attributes at:
http://www.w3.org/TR/html4/present/frames.html#h-16.2.2
Hope you'll find these helpful,
Best regards.