We have run into issues with our calendar when working with participants in multiple time zones. We would like to hide the calendar icons with CSS. Has anyone been able to do it? Thanks.
Solved! Go to Solution.
@LeadingLearning I have never removed the Calendar icon but did remove the "Help" icon for one of our sub-accounts as they have a different support structure.
I did it with JavaScript and not CSS.
{document.getElementById("global_nav_help_link").style.display = "none";}
So, to remove the Calendar should be:
{document.getElementById("global_nav_calendar_link").style.display = "none";}
Hope this helps!
-Nick
@LeadingLearning I have never removed the Calendar icon but did remove the "Help" icon for one of our sub-accounts as they have a different support structure.
I did it with JavaScript and not CSS.
{document.getElementById("global_nav_help_link").style.display = "none";}
So, to remove the Calendar should be:
{document.getElementById("global_nav_calendar_link").style.display = "none";}
Hope this helps!
-Nick
Thank you @nwilson7, your suggestion has worked.