0

I trying to replace play/pause controlbar icon with images.

.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before, .vjs-icon-pause:before {
    background-image: url(pause.png);
}

Using above class image get displayed but old icon not remove.

B Developer2
  • 49
  • 2
  • 9

1 Answers1

1

The standard icons are fonts not images. You can set content: none on the :before pseudoeleemnts to remove them and set background-image on the elements themselves rather than :before.

misterben
  • 7,455
  • 2
  • 26
  • 47