You may or may not know that within the TTG plug-ins Matt has included some css classes to help you style and place images. With them you can add borders and shadows to images as well as set floats.
If you’re using WordPress, you can simply add the class names in the image edit dialog.
However, even if you add these classes to an image in your WordPress post, those classes are not applied to your TTG blog featured images on your blog’s home page. But this is easy to remedy with custom css.
To get the same borders and shadow you’ll get by using the border and shadow class, just add this to your custom css file:
/*Add border and shadow styling to blog featured images
=======================================================*/
img.wp-post-image {
border: 1px solid #2C2C2C;
-moz-box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
-webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
These rules were simply copied from the .border and .shadow classes found in my blog’s style.css file.
I figured out the selector to use (img.wp-post-image) by using the Inspector tool in my browser.