
Originally Posted by
Still Crazy
Hi
Search through your your_template/css/stylesheet.css and find the image you want to put a border around. Using something like Firefox web developer add-on you can inspect the image and quickly determine the "id" or "class" of the element you are trying to style. Other wise you can trawl through the page source.
Assuming you wanted to put a border around the images on the product listing page then add this to the end of your stylesheet.
.productListing-data img{
border: 1px solid red;
}
You can then play around with border widths/colours etc until you reach your desired border.
Bookmarks