I can disable the app-switcher adding the snip-it below to the Space Stylesheet but it doesn't get rid of the button.
#app-switcher{
display:none;
}
Hello John,
Happy to help! Could you confirm your Confluence version with me so I can test this out?
Regards,
Shannon
6.13.3
And yes before you correct me, I know that this simply removes the control, it doesn't disable the functionality. The code snipit I found eliminates the pull-down, but leaves the button in place. Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi John,
Terribly sorry for the delay! No worries, I won't correct you in that, I assumed you were aware of the capabilities CSS has in your UI.
For 6.13.*, you can try the following:
.aui-header-before
{
display:none;
}
I do want to point out that your version of 6.13.3 was involved in a Security Vulnerability a few months ago. You'll want to upgrade as soon as you can to 6.13.4 or higher (or the latest version of Confluence). For more information, have a look at Confluence CVEs and Common Questions.
Let me know if you have any questions about that.
Regards,
Shannon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That worked, thanks!
Can you tell me when !important is needed in ...{display: none !important;}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello John,
Thank you for letting me know it worked for you! Happy to hear.
!important just makes the rule have higher precedence over normal rules. It could be used if you find that a specific rule that you've added isn't working; perhaps there's a rule in Confluence base CSS that would prevent it from working.
For more information:
I hope that's clear, but let me know if you have any questions about that.
Regards,
Shannon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.