I have the show pictures in the cart enabled. Is there any way to limit the size to a certain pixel size? For example, all my pictures on the site are 125x125 but I'd like to make it 50x50 when in the cart and wish list. Is this possible?
I have the show pictures in the cart enabled. Is there any way to limit the size to a certain pixel size? For example, all my pictures on the site are 125x125 but I'd like to make it 50x50 when in the cart and wish list. Is this possible?
I've been able to use CSS to force the size of images to what is needed. That way, it doesn't matter what image is submitted, the size is what I have set in the stylesheet.
Is this specifically for the shopping cart or all images? If for the shopping cart, can you tell me which file and what code you added?
It depends on which skin and XML package you are using. The best way to look is to go to the product page and look for the image code. Something like:
Then you can use css for the id of the photo:HTML Code:<div id="divProductPic1"> <img border="0" id="ProductPic1" name="ProductPic1" src="images/Product/medium/1.jpg" alt="Your Product" /></div> </div>
This may be too simple for your purposes but it works for me.HTML Code:#ProductPic1{ height:50px; width:50px; }