The img align attribute was deprecated in HTML4.0.1 and obsoleted in HTML5, I suggest using the CSS float property instead.
1. Directly on the img element.
<img src="image.jpg" style="float: left;">Your Text here.
<img src="image.jpg" style="float: right;">Your Text here.
2. Indirectly via a CSS class. [preferred method]
2a. The passage content.
<img src="image.jpg" class="float-left">Your Text here.
<img src="image.jpg" class="float-right">Your Text here.
2b. The Story Stylesheet area content.
img.float-left {
float: left;
}
img.float-right {
float: right;
}