Post for example: http://www.a-read.com/alguard/
The image with caption there is transparent, so it might seem like there's no caption styling, since the image will take on the same color as the caption area (and frame).
So what you're saying is that I have no way of styling all these images I have inside my posts all at once, like I used to have with the "image caption style"?
That's not what I am saying, they can be styled with css.
They all just went back to some default style, and except for styling them all one by one
A css style changes everything, so there's no need to change the post.
Here's examples of styling the inserted captions with css:
css3 style like shown here:
.wp-caption {
padding: 4px 4px 0 4px;
border: 1px solid #ccc;
color: #555;
background: #f9f9f9;
-moz-box-shadow: 1px 1px 5px rgba(153, 153, 153, 0.3);
-webkit-box-shadow: 1px 1px 5px rgba(153, 153, 153, 0.3);
box-shadow: 1px 1px 5px rgba(153, 153, 153, 0.3);
-moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;
}
Bottom bg color caption:
.wp-caption {
background-color: transparent;
border: none;
border-radius: 0;
padding: 0;
}
.wp-caption p.wp-caption-text { background-color: #333; color: #fff; }
Change the padding in the .wp-caption for frame style: padding: 4px 4px 0 4px;
I might recode the function that WP3.4 messed up, so the caption styles in the theme settings will work again, but as shown above most of the styles can be added with css too.