PUTTING A BORDER AROUND MY PICTURES

Permalink
Hi

I would like to put a border around my gallery pictures so they have more definition. How would I do this?

Thanks

 
Remo replied on at Permalink Reply
Remo
this is just related to css..

get the id or class of your tag (probably a div) surrounding the gallery and add a rule like this:

#myGallery img {
  border: 1px solid red;
}


where myGallery is the id of the tag which contains the gallery..