Product Thumbnail sizes in Magento

If you want to show product thumbnail on any page in your requirement size then

At the showing page :

<img src=”<?php echo $this->helper(‘catalog/image’)->init($_product, ‘small_image’)->resize(100, 100) ?>” border=”0″ alt=”<?php echo $this->htmlEscape($_product->getName()) ?>” />

Change 100, 100 to your X, Y

Where X : your requirement width

and Y : Requirement height.


Comments

One response to “Product Thumbnail sizes in Magento”

Leave a Reply

Your email address will not be published. Required fields are marked *

*