I came up with a partial solution that works in all browsers, but I still have some extra space on the right. I extended the height of the thumbnail <td> to get the vertical spacing and added padding to the left and right of the description <td> to get the left and right padding. I could create a separate <td> class for the far right cell with no padding-right to get that extra space but at present I don't think it's worth the trouble.
Quote:
table.wallpaper {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8pt;
width: 990px;
border: 0;
border-spacing: 0;
border-collapse: collapse;
}
.wT {
width: 122px;
height: 107px;
padding: 0;
margin: 0;
vertical-align: top;
}
.wD {
padding: 0 15px 0 15px;
vertical-align: top;
width: 178px;
}
|
Last edited by Mr. B; 08-14-2008 at 05:36 PM..
|