Remove the homepage welcome text

 By default, the title of your knowledge base will display above the search bar of your homepage in a "Welcome to...." statement:
The homepage of a live knowledge base. An arrow points to the Sample homepage welcome text

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:

  1. Go to Customize > Style (HTML & CSS).
  2. In the Customize HTML, CSS, and JS section, select Custom HTML.
  3. Select Homepage from the Select HTML section to edit dropdown.
  4. Delete this line: <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">
  5. Once you remove that line, your Homepage custom HTML should now look something like this:
    <div class="ko-homepage-top>
        [template("large-search")]
    </div>
    <div class="hg-article">
        <div class="hg-article-body">
    
  6. Be sure to Save your changes once you're done.