Forum Moderators: not2easy
CSS-
.image_float {float: left;}
/*add margins and padding if you want*/
/*Along with any other atributes*/
/*I always add a clear float div*/
/*So the fallowing content will set right*/
.clear_float {clear: both;}
HTML-
<img src="../images/your_image1.png" class="image_float" />
<img src="../images/your_image2.png" class="image_float" />
<img src="../images/your_image3.png" class="image_float" />
<div class="clear_float"></div>
Of course you can use a wrapping div to contain it better but this is the basic of what you are looking for.
I really striped that down to the bare bones. So I hope you understand it.