Hi,
I am working on the product detail template of my new shop:
http://www.kukistudio.com/index.php?...&products_id=1
Essentially I am trying to increase the size of the image on this page to be 329x491 which is incidently the original size of the image in question as uploaded to ZC.
The code which writes this image does not hardcode the width and height but for some reason the page keeps rendering the image to (width="80" height="120" ). I cant figure out where these two figures are coming from. In admin->config-->image none of the image dimensions are set to this height and its not hardcoded in the temaplte either.
Can anybody offer any suggestion as to how I can increase the size of this image to 329x491?
CheersPHP Code:<script language="javascript" type="text/javascript"><!--
document.write('<?php echo '<a href="javascript:popupWindow(\\\'' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '\\\')">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '</a>'; ?>');
//--></script>
<noscript>
<?php
echo '<a href="' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '" target="_blank">' . zen_image($products_image_medium, $products_name, MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '</a><br /><a href="' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '" target="_blank">' . zen_image($products_image_medium, $products_name, MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '</a>';
?>
</noscript>
Cos



