移动响应网站的产品图片

Product Images of mobile responsive site

我正在使用 magento 1.8.10。我的网站也是移动响应网站。产品图片在借出页面上显示得非常大,如果有人点击产品,那么当人们在移动设备上使用我的网站时,图片显示得很小。

任何人都可以帮助如何显示每个产品的完美图像?

是的,使用起来很简单

<?php 

    echo $this->helper('catalog/image')->init($_product, 'small_image')
        ->constrainOnly(false)
        ->keepAspectRatio(true)
        ->keepFrame(true)
        ->resize(160, 210);

?>

或者你想给的任何大小都可以在调整大小中提及