Quote Originally Posted by sketchyvalley View Post
Thanks again for your help, one thing I am still having an issue with is putting a border around the product images. I found in the stylesheet.css on line 1311

a img {
border:1px none;
}

If I edit that and say make it

a img {
border:1px solid;
}

It puts a border around the images but also around any other image that is present, including buttons.

Any ideas how to just add a border to products only?

Thank you so much in advance
Since there are several different areas within zen cart that display product images, you will need to find the various classes id's that handle this.

as a starter just add the following to your stylesheet.css

.productListing-data img, .centerBoxContentsNew img, .sideBoxContent img {
border:1px solid #000;
}