How can I remove video play button in wordpress?

alice252293

Elite Member
Joined
Nov 21, 2017
Messages
1,536
Reaction score
700
I'm using wordpress, when I embed videos it shows annoying video play button. How can I remove it? Thanks.

remove play button.png
 
I think that makes a good CTA IMOH ! There are some plugins that could get your perfectly designed play buttons if that looks so absurd.
 
I think that makes a good CTA IMOH ! There are some plugins that could get your perfectly designed play buttons if that looks so absurd.
Do you think it looks good?
 
Is that FV Player? If it is, adding this CSS tweak to the theme's stylesheet hides the "Play" button supposedly:
Code:
.is-splash.flowplayer .fp-ui, .is-paused.flowplayer .fp-ui {
display: none;
}
 
Is that FV Player? If it is, adding this CSS tweak to the theme's stylesheet hides the "Play" button supposedly:
Code:
.is-splash.flowplayer .fp-ui, .is-paused.flowplayer .fp-ui {
display: none;
}
I'm using newspaper theme.
 
Thread moved.
 
Try to use the following CSS code in order to hide (not remove) that button.

You can add CSS code in Dashboard → Appearance → Customize → Additional CSS (WordPress 4.7 and up).

#wp-custom-header-video-button {
display: none;
}
 
Back
Top