I am trying to post an image in my post and have text to the right of it. I can post post the picture before or after the text but I was hoping for pics that are not real wide to have text to the right of them. Any ideas?
float the image to the left then the text will wrap around it so if you are using css for the image class use float:left; so it would be <img src="whatever" alt="whatever" class="alignleft"/> you probably already have a class in your css called alignleft that does this for you.
no, if you don't have the class in your style sheet either add it to your style sheet or use inline styling like so: <img src="http://your-image-file-location-and-filename" alt="some description of your image" style="float: left;" /> Code (markup):