Last active
August 17, 2017 12:14
-
-
Save thibodux/9b99794d0319d2442dcec94db0fc0ddb to your computer and use it in GitHub Desktop.
Splunk CSS to hide Splunk-specific links in the Splunk dashboard footer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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