Hello Again
This is from: File: /modules/Detailed_Product_Images/product_images.tpl
If you add text just above teh <div align=center> tag it shows up just above the image. Or if you delete this page nothing shows up for detailed image. So this is what displays the image but where do I put the <td bgcolor="#000000">
If I go like the following
<td bgcolor="#000000">
<div align=center>
A white column remains the width of deta of the detail Image section. However the rest of the picture backgorund is black. So it has to be the page that loads before this, I think?
Take a look at
http://www.amaurydiaz.com/artwork/customer/product.php?productid=16133&cat=248&page=1
Code:
{* $Id: product_images.tpl,v 1.10 2003/08/11 10:45:10 svowl Exp $ *}
{if $images ne ""}
{capture name=dialog}
<div align=center>
{section name=image loop=$images}
{if $images[image].avail eq "Y"}
{if $images[image].tmbn_url}
[img]{$images[image].tmbn_url}[/img]
{else}
[img]{$xcart_web_dir}/product_image.php?imageid={$images[image].imageid}[/img]
{/if}
{/if}
{/section}
</div>
{/capture}
{if $smarty.capture.dialog ne ""}
{include file="dialog.tpl" title=$lng.lbl_detailed_images content=$smarty.capture.dialog extra="width=100%"}
{/if}
{/if}