I think you need to edit the stylesheet (style.css) find this line
#content img,#contentwide img {border:0px;float:right;
margin:0px 0px 10px 10px;}
Remove the float:right;
and probably you’ll need to edit/remove the margin too. So you’ll only have
#content img,#contentwide img{border:0px;}
But I suggest you to make a little experiment by changing it into
#content img, #contentwide img{border:0px;float:left;
margin:0px 10px 10px 0;}