devilsaces that worked great and thanks! I have another question for you. I’m noticing that on the single product page my product images on there are distorted and I’m wondering what css I would use to make the height 300px no matter what size product image I initially upload. Also I’m wanting to make the height of the images the same size when I view the site from mobile device or tablet.
marvikand,
Here is what I did that fixed the product images on home page/featured products. Under my theme I went into custom.css file and added this piece of code:
ul.products li.product img {
height: 300px;
width: 300px;
}
However I noticed that when I went to my product category pages the height and width was the same but the image was very distorted. So I still haven’t got the issue resolved.
lorro thanks so much that fixed the issue 🙂