@rossb: Yes it is possible to have text “wrapped” next to an image. Although it is possible to use HTML tables to do this, it is not recommended for use under the XTML standard. WordPress outputs XHTML (unless you have your DOCTYPE altered, which is a completely different story. This would only happen if you deliberately altered your theme to use HTML 4). Anyway, the best way to do this is with a DIV element. This DIV would function as a container for the image and the text. The resulting code would look (something) like this:
<div style="width: ##px; (whatever other style info you need)">
(Amazon link. I am not quite sure what exactly goes here, but this is the existing stuff you've already got)
This is your text here. This is your text here. This is your text here.
</div>
In this example, “##” right before the “px” is a number that defines the width of the container in pixels. You probably only need to specify the width of the container, because you want the text to wrap within a certain space horizontally.
Make sense? If not, I can try to clarify.
Hope this helps!
MindBlender 3D