please helpme out how to remove this atlassian logo in footer using PLUGIN
Hi Fayaz,
This duplicate footer issue is a known bug, and I created a ticket with our developers to document it: CONFSERVER-55336 – Any custom HTML at end of body causes duplicate footer image. You can view the bug ticket for details on reproducing and working around the issue, but essentially, you should be able to use the following code in your custom HTML without seeing the duplicate logo:
<script> const textToAdd = ` <p>Replace everything between the backticks with your custom HTML.</p> <p>No duplicate footer here!</p> `; $('#footer-logo').prepend(textToAdd); </script>
I hope this helps!
– Zak
Thanks @Zak Laughton
i have seen below and tried but am using confluence 6.13.0, in this custom html we have start with
</section>
<script>
</script>
<section>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @fayaz jira - there probably won't be an addon that can remove the logo. Easiest way would be to put this
#footer-logo {display: none;}
in your global stylesheet.
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.