Image Borders

I'm currently working on a new CS-Cart site and I'm having difficulty trying to locate where I can change the border from 0 to 5. Here's the situation:



http://www.prettyhotapparel.com/apparelPages/trt497p.html is the page I'm trying to duplicate. The images here have a 5 border on them. I'm trying to replicate this on their new site at http://beta.prettyhotapparel.com/unisex-tri-blend-hoody.html I found where I can border the entire class but not “just” the images and the thumbnails. Where do I change that at?



Thomas

Hi



In your style.base.css line:2343 change to


.image-border img {
margin: 3px;
border: 5px solid #CCC;
}




This however applies the border to all image-border img classes which includes the thumbnail below which looks off so to set their border independently of the larger image add a new class in your styles.base.css


#product_thumbnails img {
border: 1px solid #CCC;
}


and this will override the image-border img class letting you give the thumbnails any border you want