Add an image to Site Builder html box
Design and Skin Customization
Answering again without knowing sitebuilder much lol, but perhaps its the info you need.
From a purely code stance, (im not sure how exactly that page was built)
What you are looking for is the css property "float".
Here is a fiddle showing it in a live environment:
http://jsfiddle.net/Wexcode/UsvQd/
If you can edit the html of the page, you could add float to it as such:
<img class="alignright size-full wp-image-21134" src="http://restministries.com/wp-content/uploads/2015/04/about-us-01.jpg" alt="about-us-01" width="298" height="444" style="float:left; margin-right:8px;">
A more elegant solution would be to create a float left class and simply add it to the class field of image as "floatleft" (this probably already exists)... such as:
<img class="alignright size-full wp-image-21134 floatleft" src="http://restministries.com/wp-content/uploads/2015/04/about-us-01.jpg" alt="about-us-01" width="298" height="444">
Then in your site/themes .css file you would add the class:
.floatleft {float:left; margin-right:8px;}
Then you could simply add that class any time you wanted to float an image left.
updated by @covertlogic: 04/07/15 01:23:31AM