you can use:
.largePlayBtn.icon-play:before {
visibility: hidden;
}
Another option: since the font icon is basically text, you can set its color to transparent:
.largePlayBtn.icon-play {
color: rgba(0,0,0,0);
}
This will not work on IE8 though.
↧
Changing all buttons on Player
↧