I'm looking for a way to hide the space logo and space name elements from the left sidebar. Any ideas? v6.13 server
Hi @Megan Ellis
With configuring space stylesheets you will be able to hide sidebar.
Please find below reference stylesheets and try on a test space.
Please refer same thread for more info. https://community.atlassian.com/t5/Confluence-questions/Hide-Confluence-sidebar-default-theme/qaq-p/167553
div.theme-default .ia-splitter #main { margin-left: 0px; } .ia-fixed-sidebar, .ia-splitter-left { display: none; } div#main { margin-left: 0px !important; } div#footer { margin-left: 0px !important; }
Thanks,
Avinash
Thanks for replying! I want to keep the sidebar (it has my pagetree configured) but just leave off the logo and space name. I used custom html to hide the create button like this:
<script type="text/javascript">
AJS.toInit(function(){
AJS.$('li.aui-buttons').hide();
});
</script>
Is there a similar script that you know of for hiding the logo and space name? Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.