stargazerangel0
06-23-2003, 12:20 AM
I have the code where you use percents to make this frameset, but I would like to use exact pixel for size. I tried to replace the information to do this. Here's the code:
<html>
<head>
<title>My Page</title>
</head>
<frameset cols="160,*" border=0 frameborder=0 framespacing=0>
<frame src="pages/menu.html" name="left">
<frameset rows="99,*" border=0 frameborder=0 framespacing=0>
<frame src="pages/top.html" name="top">
<frame src="pages/main.html" name="right">
<frameset rows="50,*" border=0 frameborder=0 framespacing=0>
<frame src="pages/bot.html" name="bottom">
</frameset>
</frameset>
*<SNIP>*
--but when I view the page, the bottom frame doesn't show up! Please help!
Sadie
angelivion
06-23-2003, 01:13 AM
Originally posted by stargazerangel0
<html>
<head>
<title>My Page</title>
</head>
<frameset cols="160,*" border=0 frameborder=0 framespacing=0>
<frame src="pages/menu.html" name="left">
<frameset rows="99,*" border=0 frameborder=0 framespacing=0>
<frame src="pages/top.html" name="top">
<frame src="pages/main.html" name="right">
<frameset rows="50,*" border=0 frameborder=0 framespacing=0>
<frame src="pages/bot.html" name="bottom">
</frameset>
</frameset>
Where's the frameset code for main.html?
stargazerangel0
06-23-2003, 01:20 AM
>Where's the frameset code for main.html?<
Do I need one? I didn't need to change it, so I didn't put one. Would it make a difference if I did? What would I put, because I don't want it to change. (I don't want it to have an exact pixel size)
Sadie
this is how your coding reads...
<!-- split screen into two columns -->
<frameset cols="160,*" border=0 frameborder=0 framespacing=0>
<!-- this shows in the first column -->
<frame src="pages/menu.html" name="left">
<!-- the second column is split into rows -->
<frameset rows="99,*" border=0 frameborder=0 framespacing=0>
<frame src="pages/top.html" name="top">
<frame src="pages/main.html" name="right">
<!-- here is some stuff that kinda doesn't fit anywhere -->
<frameset rows="50,*" border=0 frameborder=0 framespacing=0>
<frame src="pages/bot.html" name="bottom">
<!-- here is the ending frameset for the 2 rows on the right -->
</frameset>
<!-- here is the ending frameset for the main 2 columns -->
</frameset>
stargazerangel0
06-23-2003, 10:14 PM
Okay, I figured it out!
This is what works:
<html>
<head>
<title>My Page</title>
</head>
<frameset cols="160,*" border=0 frameborder=0 framespacing=0>
<frame src="pages/menu.html" name="left">
<frameset rows="99,*,59" border=0 frameborder=0 framespacing=0>
<frame src="pages/top.html" name="top">
<frame src="pages/main.html" name="right">
<frame src="pages/bot.html" name="bottom">
</frameset>
</frameset>
<*snip*>
Thanks for all your help! :-)
Sadie