View Full Version : Move I frames?


active247
12-21-2004, 09:20 PM
Is it possible to move an iframe around the page... i also wanna know if it is possible to have a image map change what is in a iframe.. help!!

Chris
12-21-2004, 09:29 PM
For the iframe, add the bit in bold:


<IFRAME name="inlineframe" src="yoururl.html" width=200 height=200 marginwidth=0 marginheight=0 frameborder=0 scrolling=auto style="position: absolute; left: 10px; top: 10px;"></IFRAME>


For the image map:


<map name="mymap">
<area shape="rect" coords="0,0,50,50" href="frames.shtml" alt="frames" target="iframe_name">
<area shape="rect" coords="50,0,100,50" href="tables.shtml" alt="tables" target="iframe_name">
<area shape="rect" coords="100,0,150,50" href="postcards.shtml" alt="postcards" target="iframe_name">
<area shape="rect" coords="0,50,50,100" href="index.shtml" alt="index" target="iframe_name">
<area shape="rect" coords="50,50,100,100" href="javascript.shtml" alt="javascript" target="iframe_name">
<area shape="rect" coords="100,50,150,100" href="css.shtml" alt="css" target="iframe_name">
</map>


Thanks,
Chris :D