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!

Need Help Using Frameset 1

Status
Not open for further replies.

LyndonOHRC

Programmer
Sep 8, 2005
603
US
I thought this would be simple but I'm missing something.

I need a frame set like the following"

-----|--------------|
| |
|--------------|
| |
| |
| |
| |
-----|--------------|

I guess I just don't understand. This is what I'm trying bu it gives me three columns???
Code:
<frameset cols="25%,75%" rows="100%">
 <iframe src="left_frame.cfm">
 <frameset rows="20%,75%" cols="100%,100%">
  <iframe src="right_top_frame.cfm">
  <iframe src="right_bottom_frame.cfm">
 </frameset>
</frameset>

Lyndon

---People Remember about 10% of what you say ---They never forget how you made them feel. Covey
 
First off, you don't need iframes within framesets, just use frames. Second, to display this how you want, remove the text I have a strikethrough on:

Code:
<frameset cols="25%,75%" rows="100%">
 <frame src="left_frame.cfm">
 <frameset rows="20%,75%" [s]cols="100%,100%"[/s]>
  <frame src="right_top_frame.cfm">
  <frame src="right_bottom_frame.cfm">
 </frameset>
</frameset>


[monkey][snake] <.
 
That is still giving me one row with three columns?

Lyndon

---People Remember about 10% of what you say ---They never forget how you made them feel. Covey
 
I have this code verbatim in my html file:

Code:
<frameset cols="25%,75%" rows="100%">
 <frame src="left_frame.cfm">
 <frameset rows="20%,75%">
  <frame src="right_top_frame.cfm">
  <frame src="right_bottom_frame.cfm">
 </frameset>
</frameset>

Are you sure you removed your <body> tag? You are supposed to.

[monkey][snake] <.
 
Perfect! Thanks Monk

Lyndon

---People Remember about 10% of what you say ---They never forget how you made them feel. Covey
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top