In the default Confluence theme in 5.1.2, I found this article (https://confluence.atlassian.com/pages/viewpage.action?pageId=358908020) that tells how to add a new button link to the top of the header. However, it adds it after the Create button. Is there a way to change where the button is displayed? For example, display the button between the site logo and the Spaces button?
You can use prepend() instead of append()
<script>
AJS.toInit(function(){
AJS.$('.aui-header-primary .aui-nav').prepend('<li><a href="http://www.atlassian.com" class=" aui-nav-imagelink">Atlassian</a></li>');
});
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.