Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Created April 3, 2017 14:32
Show Gist options
  • Save ScarletPonytail/52d28d50c9a6f5a853df2a055dd481c6 to your computer and use it in GitHub Desktop.
Save ScarletPonytail/52d28d50c9a6f5a853df2a055dd481c6 to your computer and use it in GitHub Desktop.
Magento - Remove white border from small images on category grid
// 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