Forums

Photo Captions (2 posts)

  1. codyrapol
    Member
    Posted 9 months ago #

    Is there a simple way to put the photo captions on top of the pictures, as opposed to being on the bottom of them?

  2. netxm
    Member
    Posted 9 months ago #

    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;
    }

Reply

You must log in to post.

About this Topic