Hi everyone,
I've modified my product.tpl to incorporate 3 columns of small thumbnails.
Here is the code we use :
Code:
{*** Detailed Image Popup mod by
www.cart-lab.com ***}
{include file="detailed_popup_js.tpl"}
{if $active_modules.Detailed_Product_Images ne "" && $images}{strip}<A HREF="javascript: productimagedetail({$product.productid});">{/strip}{/if}
{if $active_modules.Detailed_Product_Images ne ""}
<table border=0 align="center" >
{if $productids ne ''}
{/if}
{section name=image loop=$images}
{if $smarty.section.image.index is div by 3}
<tr valign="top">
{/if}
<td valign="top"><div align="center">[img]{$xcart_web_dir}/product_image.php?imageid={$images[image].imageid}[/img]</div></td>
{/section}
</tr>
</table>
{/if}
{if $active_modules.Detailed_Product_Images ne "" && $images}{strip}
<CENTER>
[img]{$ImagesDir}/loupe.gif[/img]Zoom sur images
</CENTER></A>{/strip}{/if}
{*** Detailed Image Popup mod by
www.cart-lab.com ***}
Evrything could be ok except the fact in Opera the box is completety strecht over the fixed size we have for screen resolution 800x500.
http://www.france-modelisme.com/~boutique/tmp/ope9.jpg
With the fox or IE, it's better but we would like to have no big space between thumbnails as it is.
http://www.france-modelisme.com/~boutique/tmp/firefox.jpg
What do we need to fix to get this displayed correctly
thanks.
Pat.