Skip to content

Instantly share code, notes, and snippets.

@thibodux
Last active August 17, 2017 12:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thibodux/9b99794d0319d2442dcec94db0fc0ddb to your computer and use it in GitHub Desktop.
Save thibodux/9b99794d0319d2442dcec94db0fc0ddb to your computer and use it in GitHub Desktop.
Splunk CSS to hide Splunk-specific links in the Splunk dashboard footer
/* These settings will hide the Splunk-specific links,
.e.g, About, Support, etc., from the footer
of Splunk dashboards. It will not affect the
Splunk copyright that appears in the footer */
/* hide footer links in Splunk 6.3 and 6.4 */
.footer > div > ul {
display: none !important;
}
/* hide footer links in Splunk 6.5 and 6.6 */
footer > div > div > div:nth-child(1) {
display: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment