I don't like the color gradients ("glass effect") of the tabs in version 9 of PRTG. How can I remove them?


Article Comments

This article applies to PRTG Network Monitor 9 through 12

Customize CSS

This is a good example for the CSS customization which is built into PRTG's web interface.

Open the file customerstyles.css in the \prtg network monitor\website\css folder and paste the following code:

.ui-tabs .ui-tabs-nav li
{
	background:#ccc!important;
}
.ui-tabs .ui-tabs-nav li.right
{
	background:#333!important;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-selected
{
	background:#aaa!important;
	border:#aaa 1px solid!important
}

This will remove the glass effect.

See How can I re-brand and customize the PRTG web interface using CSS? for more information about customization.


Sep, 2011 - Permalink