ACann
-
Posts
3 -
Joined
-
Last visited
Community Answers
-
ACann's post in Having an PNG appear above the image being hovered over in a masonry gallery was marked as the answer
<script>
$(document).ready(function() {
$('.gallery-caption-wrapper p.gallery-caption-content').each(function() {
if ($(this).text().trim() === "Caption Text") {
$(this).html('<img src="xxxxxxxx;">');
}
});
});
</script>