Quote Originally Posted by Still Crazy View Post
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.
That worked great! I should be able to do what I need now. The web developer for FF is a great tool and has allowed me to add the borders to whatever page I need.

One more thing... Is there a way that you can make the border look like a shadow? Like only having the border to show up on the top and right side?

Thanks a bunch