如何如何设置修改magento产品图片大小,最模板提供该magento教程 1.打开 app\design\frontend\default\你的模版\template\catalog\product\list.phtml
搜索 "resize" ,发现有两处,因为列表页有 List 和 Grid 两种显示方式,第一个resize一般是List列表显示中的产品图片,第二个resize一般是 Grid 列表显示中的产品图片。 2. resize(135, 135),就是设置产品图片尺寸的函数,以像素为单位的。width=”135” height=”135“就是css的设置。 例如,想改成150像素宽,200像素高。那么代码就改成$this->helper(‘catalog/image’)->init($_product, ‘small_image’)->resize(150, 200); ?>” width=”150” height=”200” |