Whats Wrong With My Frame Code?

admin

Administrator
Staff member
Im having some problems getting my frames to work. <br />
<br />
The following is my best attempt, only i cant get anything to open in the 'left' frame. it shows up as a divison but it seems unaccessible. what am i doing wrong?<br />
<br />
<br />
frameset framespacing="0" border="0" rows="15%,*,10%" frameborder="0">><br />
<frame name="top" scrolling="no" noresize src=http://www.webdeveloper.com/forum/archive/index.php/"top.html" target="main"><br />
<frameset cols="*,80%"><br />
<frame name="left" src=http://www.webdeveloper.com/forum/archive/index.php/"blank.html" target="main"><br />
<frame name="main" src=http://www.webdeveloper.com/forum/archive/index.php/"blank.html" target="main"><br />
</frameset><br />
<frame name="bottom" scrolling="no" noresize src=http://www.webdeveloper.com/forum/archive/index.php/"bottom.html" target="bottom"><br />
<noframes<br />
<br />
<br />
<br />
my ideal frames actually look like this, can anyone help me build them?<br />
<br />
___________________<br />
|<br />
____________|______<br />
|<br />
|<br />
|<br />
|<br />
__|________________<br />
___________________<br />
___________________<br />
<br />
<br />
Thanks in advance for any imput!<!--content-->you might not have an html age "blank.html" in the same directory where you have thsi code,because I can see all of the frames do load the relative html pages.<!--content-->blank.html s in fact in the same folder, and has no problem opening. ive put a menu in the bottom frame, and the links in there will work targeted to the 'main' frame, but not the 'left'.<br />
<br />
maybe its a problem with the link coding?<br />
<br />
<A onClick="parent.main.location='blank.html';"<br />
parent.bottom.location='bottom.html';"<br />
parent.top.location='top.html';"<br />
parent.left.location='portfolio.html';"<br />
onMouseOver="window.status='. . .'; return true">[PortFOLIO]</a><br />
<br />
<br />
in this case, portfolio will not open on the left. if i target it to the main, it will. but it simply wont work on the left.<br />
<br />
any ideas?<!--content-->
 
Back
Top