-1

I'm having trouble adjusting the size of the play button on an embedded Kultura video. When I embed a video within a smaller container or screen size, the play button is so large that it nearly covers the entire thumbnail on any state. (see attachment) Does anyone know how I can adjust the button's size?

enter image description here

Shapada
  • 89
  • 1
  • 3
  • 11

1 Answers1

0

Read about Player Skin Overrides and about Player States.

Essentially, you would need to add custom CSS override, and include something like the below example;

.size-tiny .largePlayBtn {
  width: 8px !important;
  height: 10px !important;
}
Zohar.Babin
  • 265
  • 1
  • 2
  • 8