Custom CSS for Moving Centered Caption on Image Links Below Image

Here are the image links be default on one of our themes.

Screen Shot 2015-01-07 at 11.17.09 AM

Now, we want to move the captions below the image links. To do this we need to insert some custom CSS.

#master #wrap .wc-image-links .gallery-caption {
    top: auto;
    position: relative;
    max-width: none;
}
#master #wrap .wc-image-links .gallery-caption h3 {
    width: 100%;
    top: 0px;
}

Here is what it should look like.

Screen Shot 2015-01-07 at 11.16.48 AM