Oh. I just tracked your site down (really, a link to your site is pretty much essential for this sort of thing) and found that you don’t have any style specifications for images in your css. In fact that image’s position is specified in the html code:
<img src="https://www.skate2stick.com/wp-content/uploads/campbell_colin.jpg" alt="campbell_colin.jpg" align="left" height="185" width="185" />
It’s not ideal to have align=”left” but so it goes.
Since the image is in a div with the class of “entry” you could add something like this to your stylesheet:
.entry img{margin: 15px 15px 15px 0;}
You can play around with the numbers to get the spacing you want.