Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-12-2012, 11:11 AM   PM User | #1
allok
New to the CF scene

 
Join Date: Nov 2012
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
allok is an unknown quantity at this point
Stupid frame question

Learning about html and frames. Yeah,I know frames is not the best option but I still want to learn it.
Been trying to add a bottom frame here without any success.
Code:
<html>
<head>
<title>Frames</title>
</head>
<frameset rows="150,*">
<frame name="topp" src="topp.html" noresize />
<frameset cols="30, 150, 30">
<frame name="left" src="left.html" noresize /> 
<frame name="main" src="main.html" noresize />
<frame name="right" src="right.html" noresize />
<frame name="bottom" src="bottom.html" noresize />
</html>
Been trying to change the cols and rows and tried to start a new frameset for just bottom frame but no luck. I am probably just doing some stupid mistake but I can't see it myself. Any help would make me happy.
allok is offline   Reply With Quote
Old 11-12-2012, 01:39 PM   PM User | #2
VIPStephan
The fat guy next door


 
VIPStephan's Avatar
 
Join Date: Jan 2006
Location: Halle (Saale), Germany
Posts: 7,604
Thanks: 5
Thanked 865 Times in 842 Posts
VIPStephan is a jewel in the roughVIPStephan is a jewel in the roughVIPStephan is a jewel in the rough
You are never closing your framesets. Also, you are specifying three columns but have four frames in the last frameset. What gives?
__________________
Don’t click this link!
VIPStephan is offline   Reply With Quote
Old 11-12-2012, 02:55 PM   PM User | #3
allok
New to the CF scene

 
Join Date: Nov 2012
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
allok is an unknown quantity at this point
I tried this:
Code:
<html>
<head>
<title>Frames</title>
</head>
<frameset rows="150,*">
<frame name="topp" src="topp.html" noresize />
<frameset rows="150,*">
<frame name="bottom" src="bottom.html" noresize />
<frameset cols="30, 150, 30, 150">
<frame name="left" src="left.html" noresize /> 
<frame name="main" src="main.html" noresize />
<frame name="right" src="right.html" noresize />
</frameset>
</html>

And this:
Code:
<html>
<head>
<title>Frames</title>
</head>
<frameset rows="150,*">
<frame name="topp" src="topp.html" noresize />
<frameset cols="30, 150, 30, 150">
<frame name="left" src="left.html" noresize /> 
<frame name="main" src="main.html" noresize />
<frame name="right" src="right.html" noresize />
<frame name="bottom" src="bottom.html" noresize />
</frameset>
</html>
And also this:
Code:
<html>
<head>
<title>Frames</title>
</head>
<frameset rows="150,*">
<frame name="topp" src="topp.html" noresize />
<frameset cols="30, 150, 30">
<frame name="left" src="left.html" noresize /> 
<frame name="main" src="main.html" noresize />
<frame name="right" src="right.html" noresize />
</frameset>
<frameset rows="150,*">
<frame name="bottom" src="bottom.html" noresize />
</frameset>
</html>
But I can never get the final frame at the bottom. I want a similar frame at the bottom as I have on the top.
allok is offline   Reply With Quote
Old 11-12-2012, 03:27 PM   PM User | #4
VIPStephan
The fat guy next door


 
VIPStephan's Avatar
 
Join Date: Jan 2006
Location: Halle (Saale), Germany
Posts: 7,604
Thanks: 5
Thanked 865 Times in 842 Posts
VIPStephan is a jewel in the roughVIPStephan is a jewel in the roughVIPStephan is a jewel in the rough
Then you need <frameset rows="150,*,150"> or something like that.
__________________
Don’t click this link!
VIPStephan is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 09:08 AM.


Advertisement
Log in to turn off these ads.