|
magento uploads the file with the original size and stores it with the original size..
and then magento resize it on live and creates the images when the page is loading…
if you go to the root of your magento at localdrive, and search for the number (in all files and folders):
135
then you will get some files, but easily you can filter the one you need, called:
app/design/frontend/default/default/template/catalog/product/list.phtml
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135, 135); ?>" width="135" height="135" alt="<?php echo $this->htmlEscape($_product->getName()) ?>" />
replace it to:
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(170, 170); ?>" width="170" height="170" alt="<?php echo $this->htmlEscape($_product->getName()) ?>" />
ps.:
you will find two times in the file.. one for the grid view and one for the list view…
|