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
Update: With this code on every master slide it should work "elegant":
if (!document.getElementById('hideTicks')) {
var styleScript = document.createElement('style');
styleScript.type = 'text/css';
styleScript.id = 'hideTicks';
styleScript.innerHTML = ".cs-icon.check-icon { display: none !important; }";
document.head.appendChild(styleScript);
}