---
title: "How to hide the project's workspace dropdown in the Knowledge base site"
slug: "how-to-hide-the-project-versions-dropdown-in-the-knowledge-base-site"
description: "Customize your site to disable the workspace (previously 'Versions') dropdown selection."
tags: ["Navigation", "Customization", "Custom CSS"]
updated: 2025-12-29T10:50:30Z
published: 2026-01-31T17:30:02Z
---

> ## 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.

# How to hide the project's workspace dropdown in the Knowledge base site

If you have access to multiple project workspaces, the workspace dropdown appears at the top left of the knowledge base site. If you want to turn off the workspace selection dropdown option, you can use the below solution.

> [!NOTE]
> ** NOTE
> 
> **How will you navigate between project workspaces without the dropdown?** If you implement the below solution, the user must know the exact URL of the workspace page to access it.

### Solution

1. Navigate to **Settings** (<nor class="fa-solid fa-gear" data-tomark-pass=""></nor>) > **Knowledge base site** > **Site customization** > **Custom CSS & JavaScript** in the Knowledge base portal.

![Site customization options for branding, theme selection, and custom CSS settings displayed.](https://cdn.document360.io/860f9f88-412e-4570-8222-d5bf2f4b7dd1/Images/Documentation/Custom%20css%20&amp;%20js.png)
2. From the left navigation pane, click on the **CSS**tab and paste the following CSS snippet:

```css
header .header_bottom .header_bottom_nav ul li.versions-selection {
    display: none;
}
```

1. Click **Save**.

![](https://cdn.document360.io/860f9f88-412e-4570-8222-d5bf2f4b7dd1/Images/Documentation/image-1767005423946.png)

### Outcome

![2_Screenshot-hidden_workspace.png](https://cdn.document360.io/860f9f88-412e-4570-8222-d5bf2f4b7dd1/Images/Documentation/2_Screenshot-hidden_workspace%281%29.png)
