Hi!
I have a quick question for one of my galleries. I'm currently using the below code to have the masonry grid show a caption hover, which works fine but it seems to be conflicting with my ability to have images click through to other pages. The other code I'm using for standalone image sections seems to be working just fine. Any idea what might be the issue with the gallery sections? Thanks!
https://maxamillionpolo.com/
pw: 12345
<style> .gallery-caption {position: absolute; top: 0; left: 0; background: rgba(0,0,0,0.4); /* overlay color */ height: 100%; max-width: unset; padding: 0; opacity: 0;}
.gallery-caption-wrapper {display: flex; align-items: center; /* center vertically */justify-content: center; /* center horizontally */}
.gallery-caption-content {font-size: 1rem !important; /* caption font size */color: white; /*caption font color */}
.gallery-masonry-item {position: relative;}
.gallery-masonry-item:hover .gallery-caption {opacity: 1;}
.gallery-caption-grid-masonry {transition-delay: 0ms;} </style>