I want hide some of the items from the drop down menu, where can I find the CSS tag name for each menu items?
Article Comments
Thanks! it is very useful, and I also want to know how to remove the item which don't have the class or ID from the drop down menu? For example the Libraries, Maps and Setup.
May, 2015 - Permalink
#main_menu li:nth-child(10){ display:none; }
Simply change the 10 to anything between 1 and 10, depending on what item you want to hide :)
May, 2015 - Permalink
Hi Raymond,
Right-Click the element you want to hide and inspect it with your browser tools. Either use the class or ID of the element to hide it using the styles_custom.css, located under <PRTG app directory>/webroot/css/, like this:
#todomenuitem,#addticketbutton, .moveup { display: none !important; visibility: hidden !important; }
Note that some Elements might not hide properly.
May, 2015 - Permalink