Thanks everyone for the great suggestions. It's great that this forum has so many knowledgeable members willing to share their expertise with those of us who really need the help! It's the way I learn best!!!
Janys Hyde wrote: Terry... to place an image over to the left you are going to have to use a little css in that html box otherwise the image will remain above the text. Here is a little code to do that
<div style="text-align:center;"> DUIS autem vel eum iriure dolor in hendrerit in vulputate velit
esse molestie consequat, vel illum dolore eu feugiat nulla facilisis
at vero eros et accumsan <div style="float:left; border:none;"><img src="yourimage.png" width="128" height="128" alt="my image" title="my image" /></div></div>
You will notice that I have used a slightly different system to align the text in the centre of the page... that is by the use of css and text-align since the center tag is now deprecated. http://www.codehelp.co.uk/html/deprecated.html even though most browsers still recognize it.
Using float will have the text wrap around the image which will remain over on the left of the page. To have the text wrap on the other side, just save the float left to float right.
Just bear in mind that having the text centred will not work well aesthetically with the image block over on the left.