Quote Originally Posted by dealbyethan.com View Post
Managed to add product images into the shopping cart table. But they are too big to my liking. How can I resize it? The code I am using is as follows:

<?php
$products = $db->Execute("SELECT products_image
FROM " . TABLE_PRODUCTS . "
WHERE products_id ='" . $order->products[$i]['id'] . "'");

echo '' . zen_image(DIR_WS_CATALOG . DIR_WS_IMAGES . $products->fields['products_image'] , $order->products[$i]['name'], SMALL_IMAGE_HEIGHT, SMALL_IMAGE_WIDTH) . '</a>&nbsp;';
?>
Try SMALL_IMAGE_HEIGHT/2, SMALL_IMAGE_WIDTH/2

If that's still too big you can try /3 or /4.

Hope that helps!

Matt