Response to:

 

How can one have an image on the left with a caption below the image, and text on the right. I don't want to text to float around the image and I don't want to use a table.

 

Thanks,

 

Nancy Johnson

 

 

This is what I do:

 

CSS:

.left {

            float: left;

            margin: 5px 10px 2px 0;

}

 

.left p { color: #000; text-align: center; }

 

(you can change the margins and text size/color to suit)

 

HTML:

 

<div class=”left”>

Insert photo

<p> insert caption</p>

</div>

 

Robin Button

 

 

 

Reply via email to