Niven
Posts: 8
|
| Posted: 02/13/2005, 8:13 PM |
|
Hello All,
I have a page of thumbnail photographs (either 115px tall or 115px wide) I'd like to display horizontally instead of vertically. I've worked with some CSS layouts but am returning to tables because of various (good) reasons.
Ideally, I could have four records across, or just have the browser fill the page with as many records across as one's browser is wide (If necessary, I will decide exactly how many records across, but will never know how many down, as that will change each time).
Any suggestions would be MUCH appreciated.
D. Niven
My HTML is as follows:
<!-- BEGIN Grid photographs_categories -->
<table cellspacing="0" cellpadding="0" border="1" width="115">
<!-- BEGIN Row -->
<tr>
<td>
<p align="center"><img src="../thumbnails/{photo_filename}"></p>
</td>
</tr>
<tr>
<td>
<p align="center">{cat_value} </p>
</td>
</tr>
<tr>
<td>
<p align="center">{photo_descr} </p>
</td>
</tr>
<tr>
<td>
<p align="center">{photo_id} </p>
</td>
</tr>
<tr>
<td> </td>
</tr>
<!-- END Row -->
|
 |
 |
|