Hi there,
I've tried a different options of code to show the caption on hover on a gallery and none of them works 😞
Here is the page where the caption doesnt show up : https://loooop.studio/home
Here is the code I've put on the Custom CSS :
figure.gallery-grid-item {
position: relative;
}
.gallery-caption {
position: static;
}
/* title */
.gallery-caption-content {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
z-index: 999;
padding: 7%;
transition: opacity ease 200ms !important;
opacity: 0 !important;
pointer-events: none;
}
.gallery-grid-item:hover .gallery-caption-content {
opacity: 1 !important;
}
/* overlay */
.gallery-grid-item-wrapper a:after {
background: #f4f6ea; /* overlay color */
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
transition: opacity ease 200ms !important;
}
.gallery-grid-item:hover .gallery-grid-item-wrapper a:after {
opacity: 0.75;
}
/* remove gap */
figcaption {
padding: 0 !important;
}
Thanks in advance for the help !