Help - Search - Members - Calendar
Full Version: Problems with Frames
HTMLHelp Forums > Web Authoring > Markup (HTML, XHTML, XML)
ShadowHawk
I am taking an HTML and JavaScript class and I am having a problem resolving the issue with frames.
This is what I am wanting:
pandy
Yeees? Speak up, don't be shy! tongue.gif
ShadowHawk
sorry, didn't mean to post this it was incomplete...

here is what I was trying to post :
I am a student in web design and I am having an issue with HTML programming for frames.
here is what I am attempting to create:
IPB Image

but here is what I keep coming up with:
IPB Image

Can you knowledgeable people please assist me not necessarily with the answer,but at least guide me in the right direction as to what I need to change so I can obtain the desired result?

Following is my frame code:
<html>
<title>HTML and JavaScript</title>


<frameset border ="9" cols="*,20%" bordercolor=red>
<frame name="upperframe" src="title.html">
<frameset border ="9" rows="20%,*">
<frame name="leftframe" src="navbar.html"bordercolor=blue>
<frame name="rightframe" src="welcome.html">
</frameset>
</html>
Darin McGrew
QUOTE(ShadowHawk @ Feb 14 2007, 02:47 PM) *
here is what I am attempting to create:
IPB Image
This divides the display into two columns, then divides the left column into two rows.

QUOTE(ShadowHawk @ Feb 14 2007, 02:47 PM) *
Following is my frame code:
<html>
<title>HTML and JavaScript</title>

<frameset border ="9" cols="*,20%" bordercolor=red>
<frame name="upperframe" src="title.html">
<frameset border ="9" rows="20%,*">
<frame name="leftframe" src="navbar.html"bordercolor=blue>
<frame name="rightframe" src="welcome.html">
</frameset>
</html>
This divides the display into two columns, then divides the right column into two rows.

You need to switch the inner frameset around, so it contains two frames, one displaying title.html and the other displaying welcome.html, and so it comes before the frame displaying navbar.html.

But I recommend that you drop frames altogether.
ShadowHawk
QUOTE(Darin McGrew @ Feb 14 2007, 08:14 PM) *

QUOTE(ShadowHawk @ Feb 14 2007, 02:47 PM) *
here is what I am attempting to create:
IPB Image
This divides the display into two columns, then divides the left column into two rows.

QUOTE(ShadowHawk @ Feb 14 2007, 02:47 PM) *
Following is my frame code:
<html>
<title>HTML and JavaScript</title>

<frameset border ="9" cols="*,20%" bordercolor=red>
<frame name="upperframe" src="title.html">
<frameset border ="9" rows="20%,*">
<frame name="leftframe" src="navbar.html"bordercolor=blue>
<frame name="rightframe" src="welcome.html">
</frameset>
</html>
This divides the display into two columns, then divides the right column into two rows.

You need to switch the inner frameset around, so it contains two frames, one displaying title.html and the other displaying welcome.html, and so it comes before the frame displaying navbar.html.

But I recommend that you drop frames altogether.

I can't the class I am in requires this for the project to be completed.
ShadowHawk
I got it! Thanks Darin. Not given the answer but enough that I could figure it out. Thanks again.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2010 Invision Power Services, Inc.