View Full Version : typing next to an iframe


J E P P O
04-24-2003, 01:48 AM
hello, is there anyway to type right next to an iframe, plain text.

'Cause every time i do, it comes up down on the last line next to the frame.

Dude128
04-24-2003, 03:27 AM
you could try putting everything inside a table:

<table>
<tr>
<td>
Iframe goes here
</td>
<td>
Text goes here
</td>
</tr>
</table>

you can add attributes or switch the cells or whatever else if you want :)