Forum Moderators: mack
<div>
<p><img src="whatever" style="float:left" height="y" width="x" /></p><p>text</p>
</div>
Remember, an image is an in-line element where as a <p> is a block element, so just doing:
<div>
<p><img src="whatever" style="float:left" height="y" width="x" /> text</p>
</div>
does not always work. And if you are not using XHTML, delete the forward slash at the end of th eimage tag.
Marshall