How can I get rid of the Site-Logo, so the menu can start from the left?
I know how to change the logo from adminpanel, but i cannot delete it completly.
Confluence Version 5.0.2
I also want to customize the footer, it ist far to high with the backround logo. How can I solve this?
Thanks in advance
Oliver
how about you create a simple plugin that would do this...
simple create a plugin, and inside 'atlassian-plugin.xml', do this
<web-resource key="header-theme-resources" name="header-theme Web Resources"> <dependency>com.atlassian.auiplugin:ajs</dependency> <dependency>confluence.web.resources:ajs</dependency> <dependency>confluence.web.resources:jquery</dependency> <resource type="download" name="js.js" location="/templates/js.js"/> <context>atl.general</context> <context>atl.admin</context> <context>atl.userprofile</context> <context>atl.popup</context> <context>main</context> <context>admin</context> <context>dashboard</context> <context>editor</context> <context>editor-content</context> <context>macro-browser</context> <context>page</context> <context>blogpost</context> <context>space</context> </web-resource>
and for js use this:
AJS.$(document).ready(function() { AJS.$('#logo').remove(); });
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
my pleasure.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Oliver,
Natively in the Confluence user interface is not possible to completely remove the logo, just change it as you mentioned. So in this case I would suggest you to make a contact with an Atlassian Expert to perform this kind of customization, you can find one Atlassian Expert in the following link:
http://www.atlassian.com/resources/experts
Hope this helps.
Kind Regards,
LJ.
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.