Maybe someone will come and offer more elegant results but this will mostly accomplish what you want - I show 2 ways..
1. Do it all in the html. You could make a template and fill in your changing information. Your html would look something like this, this uses a fake file name, etc. I capitalized part of the file name because I think you have to add that in to the filename. You would add your URL (with "files" added -this is awake URL) and the size of your thumbnail. Put in your image as the first item in the paragraph for the best placement.
<div style="margin-left:24px;border:1px solid #000000;overflow:auto;width:85%;">
<h2> John Doe</h2>
<p style="padding:10px;"> <img style="float:left;padding:0, 5, 0, 5px;" src="http://italianeography.FILES.wordpress.com/2012/11/20121111-082354.jpg?w=150" alt="20121111-082354.jpg" width="150" height="150" />and here is the text about the author. and here is the text about the author.and here is the text about the author. and here is the text about the author. </p></div>
The second way uses a combination of CSS that will be added to your style sheet and the way you will need to put in your html. First the CSS for your stylesheet :
/*... Author box...*/
div .author-container {
margin-left: 24px;
border: 1px solid #000000;
overflow: auto;
width: 85%;
}
p.author {
padding: 20px;
}
img.author {
float: left;
padding: 5px;
}
/* End Author Box
After adding your css, you are ready to go to your post or page and add the html for your Author box. You just have to add a few notations, the div and its class, the p and its class, and the real image file name will be supplied when you add your image. You will need to go in your text editor and include the class="author" part of the image link.
<div class="author-container">
<h2>Freddy Frog</h2>
<p class="author"><img class="author" src="http://italianeography.files.wordpress.com/2012/11/20121111-082354.jpg?w=150" alt="20121111-082354.jpg" width="150" height="150" />and here is the text about the author.and here is the text about the author. ;and here is the text about the author. and here is the text about the author.and here is the text about the author. here is the text about the author.and here is the text about the author. here is the text about the author. here is the text about the author. here is the text about the author. here is the text about the author.and here is the text about the author. here is the text about the author. here is the text about the author.</p></div>
And that is my inelegant solution. Try it and ask any questions you may have. If I come up with a more elegant solution I will post it.