Hello,
The videos on my website have a giant play button that I feel is unnecessary to have. Is there any way to remove these from the grid videos?
Here’s the website: https://juiced.energy/
A user sought help removing large play buttons from grid videos on their website.
Another community member provided a CSS solution:
div[class*="grid-media-template"] video + div {
display: none;
}
The solution successfully resolved the issue, hiding the play button overlay on grid videos.
Hello,
The videos on my website have a giant play button that I feel is unnecessary to have. Is there any way to remove these from the grid videos?
Here’s the website: https://juiced.energy/
Hi @juiceddev ,
May I suggest to update code these steps:
div[class*="grid-media-template"] video + div {
display: none;
}
It worked perfectly, thank you for your help!