By default, the title of your knowledge base will display above the search bar of your homepage in a "Welcome to...." statement:
You can Change the welcome text on my homepage, but in some cases you might want to remove it entirely. (For example, if you add a banner image that has your company name/logo in it already!)
To remove that welcome text completely, delete one line of HTML from the Homepage Custom HTML template:
- Go to Settings > Style.
- Below the preview pane, be sure Custom HTML is selected.
- In the Custom HTML dropdown, select Homepage.
- Delete the line that says
<h1 class="hg-article-title xcolor">[homepage("title")]</h1>
. In our default template and the sample below, it's in row 2:<div class="ko-homepage-top"> <h1 class="hg-article-title xcolor">[homepage("title")]</h1> [template("large-search")] </div> <div class="hg-article"> <div class="hg-article-body">
- You can Preview Changes to see the updated look.
- Your custom HTML should now look something like this, and your title should be gone:
<div class="ko-homepage-top> [template("large-search")] </div> <div class="hg-article"> <div class="hg-article-body">
- Be sure to Save your changes once you're done.