I'm trying to duplicate the text hover effect from my portfolio page (pictured, top left image is hover) in a gallery section on another page using CSS.
I'm a CSS novice. I've managed to get the opacity hover, however I'm stuck on how to get the text description to display on hover.
.gallery-grid-item-wrapper:hover img {
opacity: 0.8;
transition: all ease-in-out 0.2s;
}
.gallery-item-description:hover img {
opacity: 1;
}
Thanks, appreciate any help.