Overview
The Custom CSS field allows administrators to apply advanced styling changes to the video player interface.
This can be used to:
- Hide player controls
- Modify layouts
- Adjust styling
- Customize playback interface behavior
How to Add Custom CSS
- Login to your Webcastcloud Admin Portal
Navigate to:
Admin > Appearance > Customize
- Select the Play Page tab
- Expand the Video Player menu
- Change the Player Mode from 'Default' to 'Video Mode' if not already selected.
- Scroll to the “Custom CSS” field
- Enter your CSS rules
- Save your changes
Example: Hide Playback Speed Controls
.vjs-control.vjs-playback-rate {
display: none !important;
}