How to: Hide the CC Icon Using CSS
Within the newest video player, the CC (Closed Caption) icon will be displayed for all sessions. If you have a session that does not have embedded captions, you can optionally hide the CC icon using CSS.
How to Configure
- Log into the Brandlive Platform and click on your project > "Edit project" button
- At the top of the page, click on the 3 ellipses icon > Custom CSS
- Copy and paste the below CSS in the CSS editor and click save.
- Publish your project.
// Hiding captions toggle
.session {
.captions-enable-container[data-testid="controls-captions-button"] {
display: none;
}
.popover-with-nav-container .popover-with-nav {
height: auto !important;
.popover-with-nav-main > li.popover-with-nav-link:nth-child(2) {
display: none;
}
}
}
Have more questions? Submit a request
Comments
Article is closed for comments.