A couple of css classes for imageleft and imageright
PHP Code:
.imageleft {
float: left;
position: relative;
}
.imageright {
float: right;
position: relative;
}
use them before the text you want to wrap :
<p><img src="image.jpg" alt="" class="imageleft">burble burble on and on</p>
Tony