Forum Discussion
MarkTomlinson-9
4 years agoCommunity Member
Check / Tick marks in the menu
These seem to have appeared in a recent update? I certainly don't remember them being there before.
Can they be turned off?
MoritzWeber
12 months agoCommunity Member
You can also add a trigger "Execute JavaScript" on the first slide of your project with code:
var styleScript = document.createElement('style');
styleScript.type = 'text/css';
styleScript.innerHTML = ".cs-icon.check-icon { display: none !important; }";
document.head.appendChild(styleScript);
Then you don't need to patch the .html everytime you create a new export.
- LizELearns12 months agoCommunity Member
This works GREAT. Thank you Moritz!