# How do I hide the About, FAQ, TOS & Privacy Policy?

**URL:** https://meta.discourse.org/t/how-do-i-hide-the-about-faq-tos-privacy-policy/182579
**Category:** Support
**Created:** [March 9, 2021, 1:19am UTC](https://meta.discourse.org/t/how-do-i-hide-the-about-faq-tos-privacy-policy/182579 "2021-03-09T01:19:16Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![MrDavis97](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mrdavis97/32/206391_2.png) [@MrDavis97](https://meta.discourse.org/u/MrDavis97)
#### Post date: [March 9, 2021, 1:31am UTC](https://meta.discourse.org/t/how-do-i-hide-the-about-faq-tos-privacy-policy/182579/2 "2021-03-09T01:31:22Z")

</div>

I don’t think you can get rid of the existence of the subpages themselves, but you can “hide” easy user access to them by using CSS. So, for example, if you want to remove links to them from the hamburger menu, you can use CSS, like

```plaintext
.hamburger-panel a.widget-link.about-link {
     display: none;
}

```

and

```plaintext
.hamburger-panel a.faq-priority.widget-link {
      display: none;
}

```

---

_[View the full topic](https://meta.discourse.org/t/how-do-i-hide-the-about-faq-tos-privacy-policy/182579)._
