# Removing "Tags" From Hamburger Menu with CSS

**URL:** https://meta.discourse.org/t/removing-tags-from-hamburger-menu-with-css/160196
**Category:** Support
**Created:** [August 8, 2020, 1:17pm UTC](https://meta.discourse.org/t/removing-tags-from-hamburger-menu-with-css/160196 "2020-08-08T13:17:37Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Bill](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bill/32/159342_2.png) [@Bill](https://meta.discourse.org/u/Bill)
#### Post date: [August 8, 2020, 1:17pm UTC](https://meta.discourse.org/t/removing-tags-from-hamburger-menu-with-css/160196/1 "2020-08-08T13:17:38Z")

</div>

I used this code to remove the “About” link in the hamburger menu, but I would also like to remove the “Tags” link. Removing “About” works fine, but I can’t figure out how to remove “Tags”.

```
// Hide About Link in Hamburger Menu
.menu-panel li a.widget-link.about-link {
  display: none;
}

```

When I inspect the tags link element in the hamburger menu, it shows:

```
<a class="widget-link" href="/tags" title="Tags"><span class="d-label">Tags</span></a>
<span class="d-label">Tags</span>

```

I referenced this and tried writing the code in a similar way to how the “hide About link” code was written, but I cannot get it to work. I know I’m writing the code wrong, I just can’t figure out how to write it out correctly.

---

<div class="post-metadata">

### Author: ![Canapin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/canapin/32/119591_2.png) [@Canapin](https://meta.discourse.org/u/Canapin)
#### Post date: [August 8, 2020, 2:03pm UTC](https://meta.discourse.org/t/removing-tags-from-hamburger-menu-with-css/160196/2 "2020-08-08T14:03:35Z")

</div>

```css
.menu-panel li a.widget-link[href="/tags"] {
    display: none;
}

```

---

<div class="post-metadata">

### Author: ![Bill](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bill/32/159342_2.png) [@Bill](https://meta.discourse.org/u/Bill)
#### Post date: [August 8, 2020, 2:31pm UTC](https://meta.discourse.org/t/removing-tags-from-hamburger-menu-with-css/160196/3 "2020-08-08T14:31:44Z")

</div>

Thanks homie!

I wasn’t using the [] brackets, that’s why it didn’t work!

Fixed.

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [September 7, 2020, 2:32pm UTC](https://meta.discourse.org/t/removing-tags-from-hamburger-menu-with-css/160196/4 "2020-09-07T14:32:01Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
