Forum Discussion
ChristaNovel637
5 months agoCommunity Member
Closed Caption Text Has Shadow
I used text-to-speech using the slide notes for a prototype in Storyline 360 (current update). All of the closed captions have this awful text shadow that I don't seem to be able to eliminate (see a...
Nedim
Community Member
Create a trigger "Execute JavaScript when the timeline starts on this slide," and try using this small JavaScript code:
const addCSS = css => document.head.appendChild(document.createElement("style")).innerHTML=css;
addCSS(".caption p {text-shadow: none !important;}")
AnneliJanssens-
4 months agoCommunity Member
The javascript worked for me. Thanks @Nedim Ramic