Documentation Index

Fetch the complete documentation index at: https://docs.document360.com/llms.txt

Use this file to discover all available pages before exploring further.

As of 22 Nov 2025, the Markdown editor has been upgraded from v1.4.10 to v3.2.2. The toolbar, layout, icons, and editor structure remain unchanged.

How to hide the left navigation bar in the knowledge base site

Prev Next

The left navigation bar, also called the category manager, displays the article category tree on the left side of the knowledge base site by default. For some knowledge bases, particularly those with a focused single-article layout or a minimal reading experience, hiding this panel by default can reduce visual clutter and help readers focus on the content. Readers are not locked out of navigation, they can still reveal the panel at any time by clicking the Show category icon next to the article title.


When to use this

Use this customization when you want to:

  • Give readers a cleaner, distraction-free reading experience by hiding the category panel on page load.
  • Present a minimal single-column layout for documentation that does not rely heavily on category-based navigation.
  • Hide the navigation panel by default while still allowing readers to show it on demand.

Before you begin

  • You need access to Settings (

    ) > Knowledge base site > Site customization > Custom CSS & JavaScript in the Knowledge base portal.
  • Hiding the left navigation bar does not remove navigation entirely. Readers can still click the Show category icon adjacent to the article title to reveal the panel.

How to hide the left navigation bar

  1. Navigate to Settings (

    ) > Knowledge base site > Site customization > Custom CSS & JavaScript in the Knowledge base portal.

    Custom CSS and JavaScript settings panel in the Document360 Knowledge base portal

  2. From the left navigation pane, select the CSS tab and paste the following snippet.

site-docs-left-panel-container{
display: none !important;
}
  1. Click Save at the top right.

    CSS tab showing the left navigation bar hide snippet saved in the Custom CSS and JavaScript panel


Outcome

Before

The left navigation bar and category manager are visible by default on the knowledge base site.

Knowledge base site showing the left navigation bar visible by default before applying the CSS

After

The left navigation bar and category manager are hidden by default. Readers can still click Show category to reveal the panel.

Knowledge base site showing the left navigation bar hidden by default after applying the CSS


Best practices

  • Note the difference between hidden and removed. This CSS hides the panel visually — it is not removed from the page. Readers can still access the navigation by clicking Show category. If you need the panel completely inaccessible, this approach alone is not sufficient.
  • Consider your content structure before hiding. For knowledge bases with deeply nested categories or frequent cross-category navigation, hiding the panel by default may make content harder to discover. Test with a sample of your readers before applying site-wide.
  • Test after saving. Open your knowledge base site and confirm the panel is hidden on page load, and that clicking Show category correctly reveals it.
  • To revert, delete the snippet. Navigate back to the CSS tab in Custom CSS & JavaScript, remove the snippet, and click Save. The left navigation bar reappears immediately.