Here's the best way:
html
- Code: Select all
<div class="profiles"><img src="yourimage.jpg" class="image"/>
Info info info<br />
info info info
</div>
<div class="profiles"><img src="yourimage" class="image"/>
Info info info<br />
info info info
</div>
CSS:
- Code: Select all
.profiles {
width:250px;
float: left;
margin-right: 20px;
font-family: 14px Arial, Helvetica, sans-serif;
text-align: left;
}
.image {
float: left;
margin-right: 10px;
margin-bottom: 10px;
}
This is just the basics but it will take two images with two write ups and place them side by side horizontally.
I hope that's what you were asking for.