I currently have this in the HTML <img href="img/image.jpg" alt="image" align="left"> Code (markup): It has it's own CSS class, but I can't find the right property to get it to replicate what the HTML does, I need all text to line up to the right of it. Thanks for the help.
<img class="left" src="images/image.jpg" alt="image" /> Code (markup): then the css could be: img.left {float:left; margin:0 -2px; padding:1px; border:0px;} Code (markup): CW
Hmm it was breaking at the end of the text tag when I had it float left, but something I did in the past thirty minutes must have fixed it, thanks!