Click to See Complete Forum and Search --> : frame position


messenjah
01-01-2003, 10:02 PM
I want my iframe to be 200 pixels from the left of my page, how do i do that? :confused:

Zach Elfers
01-01-2003, 10:20 PM
<frameset cols="200,*" framespacing="0" frameborder="0" border="0">
<frame name="left" src="left.html" noresize>
<frame name="right" src="right.html" noresize>
<noframes>
Your browser doesn't support frames
</noframes>
</frameset>

messenjah
01-01-2003, 10:23 PM
okay so if i do that, how can i link from a flash menu in the left frame to an IFrame in the right frame? i may know the solution
if the left frame were name="left" and the right frame named "right" and the IFrame named "window" would i just put <a target="window"> ??
and another question is that <a target> thing right? what do i do after that? <a target="window" href="file.html"> ??
(sorry for all the dumb questions :rolleyes: )

ShrineDesigns
01-02-2003, 01:19 AM
try this:

<iframe src="left.html" name="leftFrame" frameborder="0" height="200" width="200" style="position: absolute; top: 0px; left: 200px;"></iframe>

avoid naming frames window; self; top; or parent this refers to the window it's self.

if you want a link to load content into a certain frame; iframe or window you need to designate it with the target="targetName" attribute.

messenjah
01-02-2003, 01:57 PM
thanks a lot for your help! :D