我卸载了一个扩展程序,然后我在类别页面上显示的所有产品图像都调整为135x135而不是209x209。我检查了list.phtml
,这就是我发现的:
<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(209); ?>" width="209" height="209" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
虽然这对我来说看起来不错,但我也发现了一个随机的 css 属性,它似乎是罪魁祸首,我只是找不到任何规则的来源。
img[Attributes Style] {
width: 135px;
height: 135px;
}
你可以在这里看到我的问题