Thanks for responding Josh. Here’s the link:
https://davidhirschi.com/blog/fourths-fifths/
It is currently styled so caption appears over the image on hover, but the ideal would be for them to appear under the image. I tried various inline tweaks to the CSS from adjusting the height of the div .mslide and different combinations of the overflow and position properties without luck. The best I was able to achieve displayed a portion of the top line of the caption and the rest cut off.
I created a div for the captions nested within .mslide. Here’s the current code snippet:
<?php endif; ?>
<div id="caption" style="background: rgba(0,0,0,0.2); bottom: 20px; color: #fff; left: 15%; margin: 0; padding-bottom: 2%; padding-top: 3%; position: absolute; text-align: center; width: 70%;">
<p style="margin-bottom: 1.25em !important;"><?php the_field( "title-year" ); ?></p>
<p style="margin-bottom: 1.25em !important;"><?php the_field( "materials" ); ?></p>
<p style="margin-bottom: 1.25em !important;"><?php the_field( "dimensions" ); ?></p>
</div>
</div><!-- .mslide -->
Really appreciate your help on this as I think your plugin is brilliant in its simplicity and is easy to use for clients.