Hi,
I am wondering if the appearance of an image caption on top of an image when you hover over it is still possible. I have used the CSS code that is in the post here, but I don't see how this works with the new versions. I get a darker image when hovering, but no captions anymore. Can I add a lightbox caption and let that appear somehow?
.slug-editions .img img{
transition: all 300ms ease;
}
.slug-editions .img:hover img{
filter: brightness(0.5);
}
.slug-editions .img .caption{
opacity: 0;
transition: opacity 300ms ease;
}
.slug-editions .img:hover .caption{
opacity: 1;
}
.slug-editions .img .caption{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}