Skip to main content
Known Participant
February 17, 2017
Question

Closed Captioning Captivate 9

  • February 17, 2017
  • 1 reply
  • 364 views

Is it possible to center closed captioning on the screen, rather than it be left aligned?

This topic has been closed for replies.

1 reply

TLCMediaDesign
Inspiring
February 22, 2017

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";