frame position

liunx

Guest
I want my iframe to be 200 pixels from the left of my page, how do i do that? :confused:<!--content--><frameset cols="200,*" framespacing="0" frameborder="0" border="0"><br />
<frame name="left" src=http://www.webdeveloper.com/forum/archive/index.php/"left.html" noresize><br />
<frame name="right" src=http://www.webdeveloper.com/forum/archive/index.php/"right.html" noresize><br />
<noframes><br />
Your browser doesn't support frames<br />
</noframes><br />
</frameset><!--content-->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<br />
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"> ?? <br />
and another question is that <a target> thing right? what do i do after that? <a target="window" href=http://www.webdeveloper.com/forum/archive/index.php/"file.html"> ??<br />
(sorry for all the dumb questions :rolleyes: )<!--content-->try this:<br />
<br />
<iframe src=http://www.webdeveloper.com/forum/archive/index.php/"left.html" name="leftFrame" frameborder="0" height="200" width="200" style="position: absolute; top: 0px; left: 200px;"></iframe><br />
<br />
avoid naming frames window; self; top; or parent this refers to the window it's self.<br />
<br />
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.<!--content-->thanks a lot for your help! :D<!--content-->
 
Top