Dear ,
Stap :1
Go to this location
\design\frontend\default\ them name /template/catalog/product/list.phtml
and find this code
And replace with this code according your them image size Width and height :
Stap :2
Find this code on current page
Stap :1
Go to this location
\design\frontend\default\ them name /template/catalog/product/list.phtml
and find this code
php
$_columnCount = $this->getColumnCount();
if($_columnCount == 4){
$imgSize = 155;
}elseif($_columnCount == 3){
$imgSize = 245;
}
?>
And replace with this code according your them image size Width and height :
php
$_columnCount = $this->getColumnCount();
if( $_columnCount == 4 ) {
$imgSizeWidth = 200;
$imgSizeHeight = 300;
} elseif( $_columnCount == 3 ) {
$imgSizeWidth = 500;
$imgSizeHeight = 800;
}
?>
Stap :2
Find this code on current page
helper('catalog/image')->init($_product, 'small_image')->keepFrame(true)->resize( $imgSize); ?>" alt="stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />
Or find only
resize( $imgSize)
And replace With
helper('catalog/image')->init($_product, 'small_image')->keepFrame(true)->resize( $imgSizeWidth, $imgSizeHeight ); ?>" alt="stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />
Or Only With
resize( $imgSizeWidth, $imgSizeHeight )
Thanks
:)
Magento web development is an open source ecommerce platform and with the help of open source software's, it is now easy to build easy and secure online businesses.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThanks for this post. Can you help me with my trouble. I can't resize the image and also want to make it transparent. I followed these tutorials http://sam-ecommerce.com/blog/view/resize-image-on-magento and almost all with resizing is clear for me. But I cannot still understand how to make it transparent. Do you have any tips?
ReplyDelete