Removing icons with CSS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2022
09:18 PM
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.
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2022
09:36 AM
@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