What is this?

This knowledgebase contains questions and answers about PRTG Network Monitor and network monitoring in general.

Learn more

PRTG Network Monitor

Intuitive to Use. Easy to manage.
More than 500,000 users rely on Paessler PRTG every day. Find out how you can reduce cost, increase QoS and ease planning, as well.

Free Download

Top Tags


View all Tags

How can I remove the drop down menu items

Votes:

0

I want hide some of the items from the drop down menu, where can I find the CSS tag name for each menu items?

customize prtg web-interface

Created on May 26, 2015 6:23:24 AM



Best Answer

Accepted Answer

Votes:

0

#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 :)

Created on May 26, 2015 10:51:24 AM by  Stephan Linke [Paessler Support]

Last change on May 26, 2015 10:51:32 AM by  Stephan Linke [Paessler Support]



3 Replies

Votes:

0

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.

Created on May 26, 2015 7:59:19 AM by  Stephan Linke [Paessler Support]



Votes:

0

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.

Created on May 26, 2015 9:48:57 AM



Accepted Answer

Votes:

0

#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 :)

Created on May 26, 2015 10:51:24 AM by  Stephan Linke [Paessler Support]

Last change on May 26, 2015 10:51:32 AM by  Stephan Linke [Paessler Support]




Disclaimer: The information in the Paessler Knowledge Base comes without warranty of any kind. Use at your own risk. Before applying any instructions please exercise proper system administrator housekeeping. You must make sure that a proper backup of all your data is available.