Click to See Complete Forum and Search --> : multiple photos on same row with captions


bigtommy911
03-02-2006, 08:29 PM
how do you create multiple row photos just like photo album with captions at bottom?

ray326
03-02-2006, 11:07 PM
One way is to use a div for each, maybe like so.

<div class="pic"><img ...><p>caption for pic</p></div>

Then style with something like so.

.pic { float:left }
.pic p { margin:0; text-align:center }

(Just untried ideas.)