Created
April 3, 2017 14:32
-
-
Save ScarletPonytail/52d28d50c9a6f5a853df2a055dd481c6 to your computer and use it in GitHub Desktop.
Magento - Remove white border from small images on category grid
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Replace this... | |
src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize($_imgSize); ?>" | |
// ...with this. | |
src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->keepFrame(false)->resize($_imgSize); ?>" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment