View Full Version : Advance Frame Question


Aelurus
07-02-2003, 04:15 AM
Ok, I asked this once before, but got no real answer, so I am going to try and re-phrase it. On my site I have three frame sections. right.html, left.html and top.html. My question focuses on the left.html section. What I want to do is to split that section up. Instead of having one section, I want three. There names would be: left1.html, left2.html and left3.html. But here is tricky part. How can I space them out correctly? Make sure each section is even? What is the code for a thing like this??

pb&j
07-02-2003, 05:00 AM
can i assume this is about your site listed on your WWW button?
also to assume you are trying to make that left frame into 3 frame sections?

if so, try this for your frameset coding...


<html>
<head>
<title>The Golden Snitch Guild</title>
</head>

<frameset cols="145,*" border=0 frameborder=1 framespacing=1>

<frameset rows="33%,34%,33%">
<frame src="left1.html" name="left1" scrolling=no noresize>
<frame src="left2.html" name="left2" scrolling=no noresize>
<frame src="left3.html" name="left3" scrolling=no noresize>
</frameset>

<frameset rows="85,*" border=0 frameborder=1 framespacing=1>
<frame src="top.html" name="top" scrolling=no noresize>
<frame src="right.html" name="right">
</frameset>

</frameset>

</html>


what was done is... replaced the one FRAME tag with a new FRAMESET area.