View Full Version : aligning iframes


LOTRchick
04-27-2003, 04:03 AM
ok, i need to align my iframe to the right side of the page. how do i do that?

heres the code i'm using:

<iframe FRAMEBORDER="0" BORDER=1 width=300
height=385 src=""
name=iframe style="position:right; left:3; top:#;filter:alpha(opacity=70)" scrolling=YES></iframe>

thanks if you can help!

epolady
04-27-2003, 04:22 AM
Try

<iframe FRAMEBORDER="0" BORDER=1 width=300
height=385 src=""
name=iframe style="position: absolute; left:3; top:#; filter:alpha(opacity=70)" scrolling=YES></iframe>

or

<div align="right">
<iframe FRAMEBORDER="0" BORDER=1 width=300
height=385 src=""
name=iframe style="filter:alpha(opacity=70)" scrolling=YES></iframe>
</div>

LOTRchick
04-27-2003, 04:29 AM
thanks, the second one worked!