I have seen many blogs showing nice glossy borders around the images and i liked them. The problem is i have blog with over 300 posts and i want to add border to image automatically and i didnt know how to do it. It seems to be the simplest of the problem and couldnt crack the nut!
Finally i was able to add images by making a few changes in styles.css in the current wordpress theme. All you have to do is specify the border and background. 
Just open styles.css in your wordpress theme and put this code.
<blockquote>
<pre>/* This will add border only to featured images.*/
.post img { background: #f3f3f3; border: 1px solid #e7e7e7; }
/* This will add border to images and you will see a image holder with background set */
.post p a img { background: #f3f3f3; padding: 10px; border: 1px solid #e7e7e7;}
</pre>
Similar Posts:
- Changing Quote and Code Tags in WordPress
- How to insert logo in your wordpress blog?
- How to design 3 Column Website Layout with Top Navigation Menu in CSS
- Fix PNG transparency problem for IE6 in WordPress
- 20+ Beautiful Photo Slideshow Plugins for WordPress
- How to get image attachment ID in WordPress?
- 10+ Most Innovative and Unique WordPress Themes
- CSS Tutorial: How to Design Round Corner Boxes
- Changing Default Font in TinyMCE Editor
- How to get custom field value in WordPress?

