View Single Post
  #6  
Old 01-25-2004, 04:27 AM
  adpboss's Avatar 
adpboss adpboss is offline
 

X-Man
  
Join Date: Feb 2003
Location: Ontario, Canada
Posts: 2,389
 

Default

I think I understand now.

If you haven't modded your product page very much, detailed images appear at the bottom of the Product Detailed Page.

That area is NOT in a table. The table ends where the Product form ends.

Code:
</form> </table> {/capture} {include file="dialog.tpl" title=$product.producttitle content=$smarty.capture.dialog extra="width=100%"} {/if} {if $active_modules.Detailed_Product_Images ne ""} {include file="modules/Detailed_Product_Images/product_images.tpl" } {/if} {if $active_modules.Upselling_Products ne ""}

You would have to enclose

Code:
{if $active_modules.Detailed_Product_Images ne ""} {include file="modules/Detailed_Product_Images/product_images.tpl" } {/if}

in a table to be able to manipulate the background for that area only. If you go to Webmaster mode, browse to the front end and go to a product detail page, it will show you that the product_images.tpl is called from customer/main/product.tpl.

Once you have that it is easy to browse through product.tpl to see where the detailed images section is and whether or not it is in a table.

I hope this helps you , even a little.
Reply With Quote