View Single Post
  #3 (permalink)  
Old 10-22-2004, 06:00 PM
steve0 steve0 is offline
WebProWorld Pro
 

Join Date: May 2004
Location: Austin, TX
Posts: 199
steve0 RepRank 0
Default

No quite sure what you mean by empty space.. but
depending on how you generate your thumbnail..

here is some quasi-code that may help..using php

<?
$ImageInfo = getimagesize("imagedir/yourthumbnail");
$image_width=$ImageInfo[0];
$image_height=$ImageInfo[1];
?>
<table cellpadding=2>
<tr>
<td width="<?= $image_width?>" height="<?= $image_height ?>" valign="center" align="center">
[img]yourthumbnail[/img]" height="<?= $image_height ?>" alt="some optimized text">
</td>
</tr>
</table>
__________________
Hardcore Programming Solutions and Coffee Drinker
Reply With Quote