由於某些原因,當上傳產品圖像時,magento會在圖像的頂部和底部添加一些間距。Magento - 頂部和底部的產品圖像間距
這是一個示例圖像。由於Stackoverflow具有白色背景,因此如果保存此圖像,則會在頂部和底部看到白色間距。
This is a link to the site if you'd like to have a look in the store environment.
任何幫助將非常感激。
Regards
由於某些原因,當上傳產品圖像時,magento會在圖像的頂部和底部添加一些間距。Magento - 頂部和底部的產品圖像間距
這是一個示例圖像。由於Stackoverflow具有白色背景,因此如果保存此圖像,則會在頂部和底部看到白色間距。
This is a link to the site if you'd like to have a look in the store environment.
任何幫助將非常感激。
Regards
這是由縮略圖上設置的主題寬高比引起的。由於圖像大小設置爲232 x 280
,並且您上傳的圖像是方形的,Magneto會自動生成所調用圖像的版本。
要修改尺寸並將其設置爲方形寬高比,您可以簡單地修改主題的模板文件。
打開app/design/frontend/default/celebrity/templates/catalog/product/list.phtml
查找圖像(多個)標籤,它會是這個樣子:
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(232,280); ?>" width="232" height="280" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />
修改高度和寬度值是一樣的,就像這樣:
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(232); ?>" width="232" height="232" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />
保存該文件,並刷新您的Magento緩存。