Site logo

Archived topic

hover on image

3 replies · Started by Katharina on November 8, 2019

Viewing posts 1–4 of 4

Hi there

is this just a color overlay?

yes just a overlay, maybe light grey or so.

Try this CSS:

.custom-video-container a img {
    vertical-align: middle;
}

.custom-video-container a {
    position: relative;
}

.custom-video-container a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ccc; /* Change color */
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

.custom-video-container a:hover:after {
    opacity: 0.5; /* Change transparency */
}
This archived topic is closed to new replies.