Site logo

Archived topic

Help me to hide author avatar

3 replies · Started by iamarghya on May 7, 2022

Viewing posts 1–4 of 4

Help me to hide the author's avatar when the box hovers.

Hi there,

select the avatar Image Block, and in Advanced > Additional CSS Class(es) add: hover-hide
Then add this CSS:

.hover-hide {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.my-child-content:hover .hover-hide {
     opacity: 0;
     pointer-events: none;
}

Thanks

You're welcome

This archived topic is closed to new replies.