0

我正在尝试更改目录图像的大小。我更改了 css 并使用了调整大小功能

<?php 
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image">
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(196); ?>" width="135" height="296" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />
</a>

但它没有用。似乎我的模板具有声明的类别图像的属性。在代码中,类别产品的尺寸适用于它们:245x245。我一直在到处寻找改变它,但没有任何效果。我看到 magento go 可以让您覆盖后端任何目录图像的默认大小和比例。但是我在社区中没有看到相同的内容..

4

1 回答 1

0

物理图像大小会发生变化,但由于图像宽度和高度是使用 html 设置的,因此不会改变。

改变

src="helper('catalog/image')->init($_product, 'small_image')->resize(196); ?>" width="135" height="296"

src="helper('catalog/image')->init($_product, 'small_image')->resize(196); ?>" width="196" height="196"

于 2013-03-25T13:48:55.550 回答