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

Viewing 1 replies (of 1 total)
  • 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;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Photo Captions’ is closed to new replies.