Click to See Complete Forum and Search --> : Please help thanks! :)


gogobrent
03-14-2005, 07:46 AM
Hi,
I want the Iframe next(left) to the stuff thatīs in the <CENTER>
So I thougt just put the Iframe out fo the <CENTER> </CENTER>
But now the Iframe is a the right place but all the stuff that was in the <CENTER> </CENTER> is below the Iframe but it has to be next to it.
<html>
<HEAD>
<TITLE> some title</TITLE>
</HEAD>
<BODY>
<IFRAME width='180' height='530' src='http://some-link.com' frameborder=0></IFRAME>
<CENTER>
<B>some txtB> <BR>
<IMG SRC="http://image.jpg" ><BR>
</CENTER>
</BODY>
</HTML>
How do I do that??
Thanks in advance:)

scragar
03-14-2005, 08:14 AM
use tables(nasty) or CSS(hurray):

Tables:<html>
<HEAD>
<TITLE> some title</TITLE>
</HEAD>
<BODY>
<table><tr><td>
<IFRAME width='180' height='530' src='http://some-link.com' frameborder=0></IFRAME>
</td><td>
<B>some txt</B> <BR>
<IMG SRC="http://image.jpg" ><BR>
</td><td>&amp;nbsp;</td></tr></table>
</BODY>
</HTML>CSS:<html>
<HEAD>
<TITLE> some title</TITLE>
</HEAD>
<BODY>
<span style="postition: absolute; left: 0px; top: 0px;">
<IFRAME width='180' height='530' src='http://some-link.com' frameborder=0></IFRAME></span>
<CENTER>
<B>some txt</B> <BR>
<IMG SRC="http://image.jpg" ><BR>
</CENTER>
</BODY>
</HTML>

cthurow
04-12-2005, 10:16 AM
dont use <center> nor absolute positioning...take a few minutes to set up & implement a decent css. U'd be suprised how easy it is!