Magento 1.4
The default image size is 265x265.
All the images of our products will probably be 2x higher than the widths, and even if we put them to make them square, 265 will be too small to see the details in the image, so we would like to make the image taller.
I found media.phtml file
How will we modify this file / Magento so that the product detail page image is 265W x 530H.
It looks like code displaying an image.
<p class="product-image"> <?php $_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(265).'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" />'; echo $_helper->productAttribute($_product, $_img, 'image'); ?> </p>
php magento
Jason
source share