Text wrapped image and caption center-alignment
-
Pretty much what the title says. I have an image and am wrapping text around it. I’ve added a caption for the image, and cannot center the caption. It seems I must choose one or the other. If there’s a workaround for this, I’d love a hand. Thank you!!
-
You can try this custom CSS
.wp-caption {text-align: center; /* centers caption text */}.wp-caption img {float: left; /* or right, for text wrap */margin: 0 15px 15px 0; /* spacing around image */}
Log in or create an account to reply