# 페이지 상단의 카테고리 정보/텍스트를 모두 삭제하는 간단한 방법이 있을까요?

**URL:** https://meta.discourse.org/t/is-there-a-simple-way-to-remove-all-the-category-info-text-from-top-of-page/206287
**Category:** Support
**Created:** [10월 17, 2021, 8:42오후 UTC](https://meta.discourse.org/t/is-there-a-simple-way-to-remove-all-the-category-info-text-from-top-of-page/206287 "2021-10-17T20:42:45Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![BCHK](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bchk/32/3268_2.png) [@BCHK](https://meta.discourse.org/u/BCHK)
#### Post date: [10월 17, 2021, 8:42오후 UTC](https://meta.discourse.org/t/is-there-a-simple-way-to-remove-all-the-category-info-text-from-top-of-page/206287/1 "2021-10-17T20:42:45Z")

</div>

포럼 상단의 이 모든 텍스트를 쉽게 제거하는 방법이 있을까요? 코딩을 잘하지 못하고 CSS 편집도 잘 못합니다. - 하지만 메인 카테고리가 하나인 단순한 포럼을 운영하고 있으며, 더 깔끔한 UI를 원합니다. 여기에 표시된 것처럼 카테고리 박스 등을 모두 제거하고 싶습니다:

 ![Screen Shot 2021-10-17 at 1.39.09 PM](https://global.discourse-cdn.com/meta/original/3X/5/e/5e912b5e0450f3fd22773488ed9c075576ed5bef.jpeg)

---

<div class="post-metadata">

### Author: ![Zup](https://avatars.discourse-cdn.com/v4/letter/z/c37758/32.png) [@Zup](https://meta.discourse.org/u/Zup)
#### Post date: [10월 17, 2021, 10:31오후 UTC](https://meta.discourse.org/t/is-there-a-simple-way-to-remove-all-the-category-info-text-from-top-of-page/206287/2 "2021-10-17T22:31:47Z")

</div>

테마 구성 요소의 공용 CSS에 다음을 추가하면 표시되지 않아야 합니다:

```plaintext
ol.category-breadcrumb {
    display: none;
}
#navigation-bar {
    display: none;
}

```

이를 대신해 드릴 수 있도록 간단한 TC를 하나 만들었습니다. 로컬에 설치해 보실 수 있습니다:

[discourse-hide-nav.zip](https://meta.discourse.org/uploads/short-url/fK7sBY1IsH0iaScvWx2Zs5QBora.zip) (1016 Bytes)

Discourse 관리자 패널 \> 사용자 지정 \> 테마 \> 구성 요소 \> 설치 \> 내 장치에서 로 이동하세요.  
discourse-hide-nav.zip를 선택한 후 `Install`(설치)을 클릭하세요.  
Hide Nav TC 편집기에서 ‘Add all themes’(모든 테마에 추가)를 클릭한 다음 녹색 체크 표시 원 버튼을 클릭하세요.

수정: 제 생각에는 아래 스티븐의 답변이 더 나은 것 같습니다.

---

<div class="post-metadata">

### Author: ![Steven](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/steven/32/187890_2.png) [@Steven](https://meta.discourse.org/u/Steven)
#### Post date: [10월 17, 2021, 10:33오후 UTC](https://meta.discourse.org/t/is-there-a-simple-way-to-remove-all-the-category-info-text-from-top-of-page/206287/3 "2021-10-17T22:33:06Z")

</div>

Zup가 나보다 빨랐어요. 기본적으로 같은 아이디어인데, ‘새 주제’ 버튼을 오른쪽으로 정렬하고 싶다면 다음을 추가하세요:

```css
.list-controls {
    ol.category-breadcrumb, ul#navigation-bar {
        display: none;
    }
    .navigation-container {
        flex-direction: row-reverse;
    }
}

```

---

<div class="post-metadata">

### Author: ![BCHK](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bchk/32/3268_2.png) [@BCHK](https://meta.discourse.org/u/BCHK)
#### Post date: [10월 18, 2021, 4:07오전 UTC](https://meta.discourse.org/t/is-there-a-simple-way-to-remove-all-the-category-info-text-from-top-of-page/206287/4 "2021-10-18T04:07:42Z")

</div>

훌륭네요! 자세한 설명 정말 감사드립니다! 제가 꼭 필요했던 정보였어요!

---

<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: [11월 17, 2021, 4:08오전 UTC](https://meta.discourse.org/t/is-there-a-simple-way-to-remove-all-the-category-info-text-from-top-of-page/206287/5 "2021-11-17T04:08:22Z")

</div>

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