Desperately need help with some htmlText

Hello,

I need some help. I have a dynamic text field that I am loading html into. Ok… that works great. My problem lies in the use of the image tag. How do I do something like this:

<p>blah dslfjskdjflskdjf </p>

<img src=“pic1.jpg” width=“320” height=“180” />

<p>more filler</p>

So that the text renders, the pic renders on the line below and the next <p> renders on the line below the picture. Any ideas? Thanks!

enclose the img tag with paragraph tags?

<p>blah dslfjskdjflskdjf </p>

<p><img src=“pic1.jpg” width=“320” height=“180” /></p>

<p>more filler</p>

That was the first thing I thought of, and unfortunately it doesn’t seem to work.

There is an extra / at the end of your img tag

removed:

<p>blah dslfjskdjflskdjf </p>

<p><img src=“pic1.jpg” width=“320” height=“180” ></p>

<p>more filler</p>