
10-03-2008, 07:49 AM
|
|
 | |
Banned
|
|
 X-Adept
|
|
Join Date: Jan 2008
Posts: 486
|
|
|
Re: Fashion Mosaic Product Detail Image Size
Quote:
Originally Posted by Tom D
I am having trouble changing the image size from the template. I am trying to edit this template /customer/main/product.tpl
The code for the image I am using is
{include file="product_thumbnail.tpl" productid=$product.productid image_x=$product.image_x image_y=$product.image_y product=$product.product tmbn_url=$product.tmbn_url id="product_thumbnail" type="P"}
The code that was originaly in place would not show the image for what ever reason.
I need to limit the size of all the images so they dont take up all the room. I have tried changing the X variable and Y variable. I have tried changing the X variable and deleting the Y. I am having no luck and the chances are I dont know what I'm doing lol.
Link to an example https://www.lovebugbabylv.com/xcart/product.php?productid=16133&cat=253&page=1
Thanks for the help.
|
Try next solution:
max width - 250 px:
PHP Code:
{include file="product_thumbnail.tpl" productid=$product.productid image_x=250 product=$product.product tmbn_url=$product.tmbn_url id="product_thumbnail" type="P"}
|
|