The Instructure Community will enter a read-only state on November 22, 2025 as we prepare to migrate to our new Community platform in early December. Read our blog post for more info about this change.
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.
Community helpTo interact with Panda Bot, our automated chatbot, you need to sign up or log in:
Sign inTo interact with Panda Bot, our automated chatbot, you need to sign up or log in:
Sign in
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.