Add logo to a knowledgebase site

Replace the default site's logo with your own.

To add a logo to your knowledgebase, simply add the following code to the Custom HEAD Content, on the knowledgebase's settings section:

<style>
    .navbar-brand {
        opacity:0;
        transition: opacity .3s ease-in;
    }
</style>
<script>
    window.onload = function () {
        var navbarBrand = document.getElementsByClassName('navbar-brand')[0];
        navbarBrand.innerHTML = '<img src="LOGO URL HERE" width="110">';
        navbarBrand.style.opacity = 1;
    }
</script>

Replace "LOGO URL HERE" with the URL of your logo image.

The above code will hide the default logo and replace its content with your own.

Your vote was sent, thanks!
Was this article helpful?

Want to talk to a human?

Feel free to contact us if you cannot find what you are looking for in our help center. We will be answering you shortly!

Feel free to contact us if you cannot find what you are looking for in our help center. We will be answering you shortly!

Contact us
Woman messaging on mobile phone