Home > User Voice > Delete or hide the System Dashboard

Delete or hide the System Dashboard NOT NOW
6

In reply to: Mike Fitzmaurice

To add to Bartek's response, you can do this, but it will hide *every* system dashboard from the navigation bar for *every application*. The CSS looks like this:

[id="system#dashboard"]{
display: none;
}

I asked Bartek if it really had to be for the entire portal (i.e., every application), and he replied "no -- use this CSS syntax for one application at time":

[href="/db/1/app/10/dashboards/system"] {
display: none;
}

Where 1 = db id and 10 = your app ID. If you want to do this to multiple applications, you'll need multiple entries, of course.