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 project's workspace dropdown in the Knowledge base site

Prev Next

When a project has multiple workspaces, a workspace selection dropdown appears at the top left of the knowledge base site. This allows readers to switch between workspaces directly from the site. If you want to remove this dropdown — for example, to simplify the site header or prevent readers from navigating between workspaces — you can hide it using a CSS snippet.

NOTE

How will readers navigate between workspaces without the dropdown?
If you hide the workspace dropdown, readers must know the exact URL of each workspace to access it directly. There is no other navigation path to switch workspaces once the dropdown is hidden.


When to use this

Use this customisation when you want to:

  • Simplify the site header by removing the workspace dropdown for a cleaner presentation.
  • Prevent readers from switching between workspaces directly from the knowledge base site.
  • Direct readers to specific workspace URLs rather than allowing open navigation between workspaces.

Before you begin

  • You need access to Settings (

    ) > Knowledge base site > Site customization > Custom CSS & JavaScript in the Knowledge base portal.
  • Hiding the dropdown only affects its visibility on the knowledge base site — it does not remove or restrict the workspaces themselves. Readers can still access any workspace directly via its URL.
  • This is a site-wide change. To revert, delete the snippet from the CSS tab and click Save.

How to hide the workspace selection dropdown

  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:

header .header_bottom .header_bottom_nav ul li.versions-selection {
    display: none;
}
  1. Click Save.

    CSS tab showing the workspace dropdown hide snippet saved in the Custom CSS and JavaScript panel


Outcome

The workspace selection dropdown no longer appears in the site header. Readers see a simplified header without the workspace switcher.

Knowledge base site header with the workspace selection dropdown hidden after applying the CSS


Best practices

  • Communicate workspace URLs to readers before hiding the dropdown. Once the dropdown is removed, readers have no in-site way to discover or switch to other workspaces. If your readers need access to multiple workspaces, ensure the correct URLs are shared through other channels, for example, in your site header links or footer navigation.
  • Test the change on your live site. After saving, visit your knowledge base site and confirm the dropdown is no longer visible in the header across different pages and device sizes.
  • To revert, delete the snippet. Navigate back to the CSS tab in Custom CSS & JavaScript, remove the snippet, and click Save. The workspace dropdown reappears immediately.