# 从导航中隐藏日历/日程

**URL:** <https://meta.discourse.org/t/hiding-calendar-agenda-from-navigation/272268>\
**Category:** Development\
**Tags:** events\
**Created:** [2023年四月19日 10:08 UTC](https://meta.discourse.org/t/hiding-calendar-agenda-from-navigation/272268 "2023-04-19T10:08:25Z")\
**Posts on this page:** 3\
**Page:** 1

<div class="post-metadata">

**Author:** ![thaidb](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/thaidb/32/68488_2.png) [@thaidb](https://meta.discourse.org/u/thaidb)\
**Post date:** [2023年四月19日 10:08 UTC](https://meta.discourse.org/t/hiding-calendar-agenda-from-navigation/272268/1 "2023-04-19T10:08:25Z")

</div>

您好，  
我该如何隐藏此导航？  
谢谢！

 ![image](https://global.discourse-cdn.com/meta/original/4X/d/6/9/d69971ed33252ae18ddc9d78a5cc8eae4c942b27.png)

---

<div class="post-metadata">

**Author:** ![satonotdead](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/satonotdead/32/447830_2.png) [@satonotdead](https://meta.discourse.org/u/satonotdead)\
**Post date:** [2023年四月27日 13:28 UTC](https://meta.discourse.org/t/hiding-calendar-agenda-from-navigation/272268/2 "2023-04-27T13:28:42Z")

</div>

您可以使用 CSS 规则 `display: none`（以及您的浏览器检查器来获取类或 id）。

---

<div class="post-metadata">

**Author:** ![Lilly](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/lilly/32/575047_2.png) [@Lilly](https://meta.discourse.org/u/Lilly)\
**Post date:** [2023年四月27日 13:43 UTC](https://meta.discourse.org/t/hiding-calendar-agenda-from-navigation/272268/3 "2023-04-27T13:43:36Z")

</div>

试试这个：

通用 CSS

```scss
.nav-pills .nav-item_agenda, .nav-pills .nav-item_calendar {
        display: none;
}

```
