 |
|
|
| View previous topic :: View next topic |
| Author |
Message |
kyriani
Joined: 12 Nov 2005 Posts: 1
|
Posted: Sat Nov 12, 2005 9:03 am Nested Frames and the noresize tag. |
|
|
|
I created the following file in editpad:
<FRAMESET cols="100,*">
<frame src="bmarklist.htm">
<FRAMESET rows="50,*,100">
<FRAME SRC="add.htm" TITLE="Menu">
<FRAME SRC="main.htm" TITLE="Content">
<frame src="advert.htm" noresize>
</FRAMESET>
</FRAMESET>
It works pretty much as intended, but both the bmarklist frame and the advert frame won't resize. If I remove the noresize tag, then I can resize either of them. This happens in both IE and Firefox.
How do I get the bmarklist frame to resize? |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8748 Location: Castle Pines North, CO USA
|
Posted: Sat Nov 12, 2005 2:46 pm |
|
|
|
|
I think this might be what you are trying to do
| Code: |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>
<frameset rows="100,*">
<frame name="bmarklist" scrolling="no" noresize target="main" src="bmarklist.htm">
<frameset cols="50,*,100">
<frame name="add" target="main" src="add.htm" scrolling="auto">
<frame name="main" src="main.htm" scrolling="auto">
<frame name="advertise" src="advert.htm" scrolling="auto" noresize target="_blank">
</frameset>
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html> |
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
|
 |
|
|
|
|
|
|
|