Course Content

Customize Video Player with CSS


Murray Gray in Course Content

Nov 04, 2022 - 1 min read. Available on Growth plan or higher.

Table of Contents

We've created some great video button styles for you that you can apply to your membership site experience.

To get started:

  • Open any course and open the Advanced Course Settings section
  • Open the CSS sub-section
  • Set the Enable Custom CSS For This Course toggle to ON (green)
  • You should then see the CSS field appear. Add your CSS code to that box alongside any other code you may have already added to it.

Black Border on Video Player


.custom-single-training-media {
border:1px solid black;
}

Drop Shadow on Video Player


.custom-single-training-media {
box-shadow: 0px 3px 17px -3px rgba(0,0,0,0.36);
-webkit-box-shadow: 0px 3px 17px -3px rgba(0,0,0,0.36);
-moz-box-shadow: 0px 3px 17px -3px rgba(0,0,0,0.36);
}

Black Border AND Drop Shadow on Video Player


.custom-single-training-media {
border:1px solid black;
box-shadow: 0px 3px 17px -3px rgba(0,0,0,0.36);
-webkit-box-shadow: 0px 3px 17px -3px rgba(0,0,0,0.36);
-moz-box-shadow: 0px 3px 17px -3px rgba(0,0,0,0.36);
}

Lots of people found these next topics pretty useful...

3