Click to See Complete Forum and Search --> : Whats Wrong With My Frame Code?


skordy
07-09-2003, 04:41 AM
Im having some problems getting my frames to work.

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?


frameset framespacing="0" border="0" rows="15%,*,10%" frameborder="0">>
<frame name="top" scrolling="no" noresize src="top.html" target="main">
<frameset cols="*,80%">
<frame name="left" src="blank.html" target="main">
<frame name="main" src="blank.html" target="main">
</frameset>
<frame name="bottom" scrolling="no" noresize src="bottom.html" target="bottom">
<noframes



my ideal frames actually look like this, can anyone help me build them?

___________________
|
____________|______
|
|
|
|
__|________________
___________________
___________________


Thanks in advance for any imput!

Khalid Ali
07-09-2003, 08:50 AM
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.

skordy
07-09-2003, 02:54 PM
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'.

maybe its a problem with the link coding?

<A onClick="parent.main.location='blank.html';"
parent.bottom.location='bottom.html';"
parent.top.location='top.html';"
parent.left.location='portfolio.html';"
onMouseOver="window.status='. . .'; return true">[PortFOLIO]</a>


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.

any ideas?