# 'Categorieën' verwijderen uit de bovenste en zijnavigatie?

**URL:** https://meta.discourse.org/t/remove-categories-from-top-and-side-navigation/317539
**Category:** UX
**Created:** [22 juli 2024 om 09:32 UTC](https://meta.discourse.org/t/remove-categories-from-top-and-side-navigation/317539 "2024-07-22T09:32:50Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![CaptainJ](https://avatars.discourse-cdn.com/v4/letter/c/53a042/32.png) [@CaptainJ](https://meta.discourse.org/u/CaptainJ)
#### Post date: [22 juli 2024 om 09:32 UTC](https://meta.discourse.org/t/remove-categories-from-top-and-side-navigation/317539/1 "2024-07-22T09:32:50Z")

</div>

‘Categories’ currently appears in three places and I’m really trying to simplify the navigation for my audience who generally aren’t that tech-savvy.

I’d like the homepage to be categories boxes containing topics (so that new users immediately see what ‘categories’ and ‘topics’ mean as they’re probably much more familiar with ‘channels’ and ‘threads’) and it looks like the only way to do that is to include ‘Categories’ in the top navigation. But ‘categories \>’ is already there and it seems like I can’t remove it; the sidebar also has a ‘Categories’ drop-down and it seems like I can’t remove that either.

Am I missing something?

Cheers!

---

<div class="post-metadata">

### Author: ![chapoi](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/chapoi/32/537252_2.png) [@chapoi](https://meta.discourse.org/u/chapoi)
#### Post date: [5 augustus 2024 om 14:43 UTC](https://meta.discourse.org/t/remove-categories-from-top-and-side-navigation/317539/2 "2024-08-05T14:43:45Z")

</div>

I’m afraid the only (or at least most simple) way to go about this, is to simply hide the elements you don’t want with css.

For the sidebar for example, this is the component:

 ![image](https://global.discourse-cdn.com/meta/original/4X/7/8/a/78a6058e74ded863f7d2a0880c06beea52a425ea.png)

So you could hide it with:

```plaintext
.sidebar-section[data-section-name="categories"] {
  display: none;
}

```

Hope that helps!

---

<div class="post-metadata">

### Author: ![CaptainJ](https://avatars.discourse-cdn.com/v4/letter/c/53a042/32.png) [@CaptainJ](https://meta.discourse.org/u/CaptainJ)
#### Post date: [8 augustus 2024 om 15:30 UTC](https://meta.discourse.org/t/remove-categories-from-top-and-side-navigation/317539/3 "2024-08-08T15:30:06Z")

</div>

Thanks! I’m a complete n00b with css but I think I managed to make it work 🙂
