
How to change captions font size
Hi,
I would like to ask, if there is a way to change font size of captions. I know, that I can use: captions: {fontSize: xx}, but in fact it doesn't work. I mean, if there is a way to change it in for example some .js or .css official file.
The only way I succeeded is, that I add in header of my .html site this:
<style>
.jw-captions {
font-size: xx!important;
}
.jwplayer video::-webkit-media-text-track-container {
font-size: xx!important;
}
</style>
It works, but it is not responsive - in small window or in fullscreen it's same.
Can you help me to find better way to solve this problem? What and where to change to reach a bit smaller font?
Thank you very much!