View Single Post
  #2 (permalink)  
Old Nov 18th, 2007, 14:45
Lchad Lchad is offline
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: The Best way to display Images and text

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.
Reply With Quote