Skip to main content
NiCE KnowledgeKnowledge
NiCE Knowledge Success Center

Hide table of contents

Use on-page or global CSS to hide the Table of Contents on How-To, Reference, or Topic pages.

Remove TOC from a page

  1. Open the page in Edit mode.
  2. In the editor toolbar, click Styles > CSS.
  3. Add the following code to the CSS field:
    #mt-toc-container {
        display: none !important;
    }
    
  4. Save.

Remove TOC from entire site

To apply a style change for your entire site:

  1. Navigate to Site tools > Control panel > Custom Site CSS.
  2. Add the following code to the CSS field:
    #mt-toc-container {
        display: none !important;
    }
    
  3. Save.

You can also remove the heading numbering in the TOC or hide certain headings in the TOC

Only Admins can access the Control panel to make changes to Custom Site CSS.

  • Was this article helpful?