Is there a way to add a border to each thumbnail image with css?
Is there a way to add a border to each thumbnail image with css?
Find this and add a valid border entry
Code:a img {border: none; }
Zen-Venom Get Bitten
Yes I already tried that. It adds a border to every image. I'm just looking to add borders to the small thumbnail images. Hoping to do it in css.
Post a url to the page(s) where these are as you will have to address them individually
Zen-Venom Get Bitten
Thanks, kobra. After 12 hours and 100 cups of iced cofee, it was as simple as adding:
#mainWrapper img {
border: 1px;
border-style: solid;
border-color: #999999;
}
to any wrapper that contained an image I wanted a border around. Thanks again!