Copy link to clipboard
Copied
Is it possible to center closed captioning on the screen, rather than it be left aligned?
Copy link to clipboard
Copied
If this is HTML5, yes.
You can add the style to the head of the HTML page or the published CSS file.
#cc{
text-align:center
}
Or you can execute this JavaScript on the first slide:
document.getElementById("cc").style.textAlign="center !important";