Is there a simple way to put the photo captions on top of the pictures, as opposed to being on the bottom of them?
Is there a simple way to put the photo captions on top of the pictures, as opposed to being on the bottom of them?
Do it with CSS
.wp-caption{
position:relative;
}
.wp-caption img,
.wp-caption-text{
position:absolute;
}
.wp-caption img{
top:30px;
}
.wp-caption-text {
top:0;
}You must log in to post.