Removing icons with CSS

Jump to solution
LeadingLearning
Community Member

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.

Labels (1)
0 Likes
1 Solution
nwilson7
Community Champion

@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

View solution in original post