I would like to disable the dashboard in the navbar menu in our installation of moodle. I'm using Moodle v3.4.4+ and Moove theme v2.3.3. I thought I had successfully hidden the menu item by using the following selector in the additional css of the theme:
#nav-drawer > ul:nth-child(1) > li:nth-child(2)
{display:none;}
I just found out that this actually hides the second menu item across all pages - meaning within a course it was hiding a participants button which is used by one of the teachers to check up on student progress.
Is there a specific selector I can use to target just the dashboard item in the menu, as it doesn't have an id?
Any help would be appreciated.