Adding Borders Around the Posts on the Blog Page

Required: My Custom CSS plugin

If you want to add borders around the posts on your blog page, category pages, or other archive pages, go to the My Custom CSS menu and paste the following code. The border width, border color, border radius (how much you want the corners to curve), and the padding (spacing) can all be adjusted as needed.

.archive #content .post, .blog #content .post, .category #content .post, .tag #content .post
{ border:2px solid #0066CC; -moz-border-radius: 10px; border-radius: 10px; padding:10px 10px 10px 10px; }