Magento 1.4Magento產品詳細圖片尺寸
默認產品詳細信息圖片尺寸爲265x265。
我們所有的產品圖片都可能比寬度高2倍,即使我們用它們填充以使它們變爲265,也會太小而無法看到圖像中的細節,因此我們希望使圖像更高。
我發現media.phtml文件
我們怎麼會去修改這個文件/ Magento的,這樣的產品詳情頁圖像是265W X 530H。
這看起來像顯示圖像的代碼。
<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>