If your page is going to repeat the “Image/Bio” format that you have on that page, then you should create yourself a Template.
Something like this…
<div .class="BioContainer" style="float:left;margin-bottom:20px">
<Your Image code here aligned left from the insert image page>
<div class="BioContent" style="float:left">
<ul style="list-style:none">
<li><b>Name: </b>Peace Keeper Jack</li>
<li><b>Bio: </b>Bla bla bla....</li>
</ul>
</div>
</div>
When you want to add another Producer/Author/Person and their Bio, you just insert this template into your post, then fill in the info.
The whole thing will float left under the bio above it, and will add 20px(or whatever you set it to)of margin to the bottom to put some space between bios.
You can clean it up a bit, by assigning a class to the elements that have in-line styles, and place the style info in the style.css, but either way will work.
The nice thing about having the styling in your style.css is that once you have it styled the way you want you never have to edit the styling again, you just paste it where you want it, then insert the image where it goes and add the bio info in the unordered list items.