janifour
08-03-2006, 05:23 PM
ok so im using divs and want to put text on an image and would like to use an iframe, now i am just wondering how to position an iframe, how to change the width and height. i know the simple iframe code, but dont know how to modify it to my needs.
bourdelson
08-03-2006, 05:26 PM
Add style="position:absolute; top:#px; left:#px; width:#px; height:#px;" [changing the # to numbers, of course] to your iframe tag, so it'll look something like this:
<iframe name="iframe" src="page.html" style="position:absolute; top:#px; left:#px; width:#px; height:#px;"></iframe>
Hope that helps. :)