New knowledge bases created from scratch include a "Made with KnowledgeOwl" statement in the footer, which should look something like this:
To remove this statement:
- Go to Customize > Style (HTML & CSS).
- In the Customize HTML, CSS, and JS section, select Custom HTML.
- Select Body from the Select HTML section to edit dropdown.
- The footer text is in rows 6-8:
<div class="row hg-site-body slideout-new"> [template("layout")] {{snippet.backToTop}} </div> <div class="row ko-site-footer text-center xsize"> <div>Copyright © 2025 Your Company, LLC. All rights reserved. <br>Made with <a href="https://www.knowledgeowl.com" target="_blank">KnowledgeOwl</a> <img class="ko-logo" src="https://dyzz9obi78pm5.cloudfront.net/app/image/id/65cbb573a7123f123624c722/n/favicon-32px.svg"> </div> </div>
- To delete the "Made with KnowledgeOwl" portion, delete row 7 completely, beginning with
<br>Made with
and ending withfavicon-32px.svg">
. Be sure you don't delete either</div>
that comes after it!
Your HTML should now look something like this: - Be sure to Save your changes.
<div class="row hg-site-body slideout-new">
[template("layout")]
{{snippet.backToTop}}
</div>
<div class="row ko-site-footer text-center xsize">
<div>Copyright © 2025 Your Company, LLC. All rights reserved.
</div>
</div>