Show Video Icon On Hover

Posted in: Newsmag
Post count: 89

Hi,

I was wondering how i could set the video icon to show only when hovering over the image?

Regards,

Glenn

Post count: 7909

Hi,

You can try this custom css in Theme Panel > Custom Css:

.td-video-play-ico img {
opacity: 0;
}
.td-big-grid-post:hover .td-video-play-ico img {
opacity: 1;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
.td_module_wrap:hover .td-video-play-ico img {
opacity: 1;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}

Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newsmag’ is closed to new topics and replies.