I am using iframe to show a video on my site and want to change the styling of the play button.
Here my code:
.ytp-cued-thumbnail-overlay-image {
background: url(https://www.w3schools.com/css/trolltunga.jpg);
}
button.ytp-large-play-button.ytp-button {
z-index: -1 !important;
}
<iframe width="420" height="345" src="https://www.youtube.com/embed/XGSy3_Czz8k"></iframe>
How can I put my background-image and change the button styling?