# 카테고리 페이지에서 주제 미리보기 비우는 방법

**URL:** https://meta.discourse.org/t/how-to-disable-topic-excerpts-in-category-page/158898
**Category:** Support
**Created:** [7월 27, 2020, 7:17오전 UTC](https://meta.discourse.org/t/how-to-disable-topic-excerpts-in-category-page/158898 "2020-07-27T07:17:59Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![yahyagenc](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/yahyagenc/32/188138_2.png) [@yahyagenc](https://meta.discourse.org/u/yahyagenc)
#### Post date: [7월 27, 2020, 7:17오전 UTC](https://meta.discourse.org/t/how-to-disable-topic-excerpts-in-category-page/158898/1 "2020-07-27T07:17:59Z")

</div>

![Adsız](https://global.discourse-cdn.com/meta/original/3X/6/f/6f4158f4dd0054f764be43e2428974aa3bd075ed.png)  
그 부분을 비활성화하는 방법은 무엇인가요?

---

<div class="post-metadata">

### Author: ![osioke](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/osioke/32/238946_2.png) [@osioke](https://meta.discourse.org/u/osioke)
#### Post date: [7월 27, 2020, 3:16오후 UTC](https://meta.discourse.org/t/how-to-disable-topic-excerpts-in-category-page/158898/2 "2020-07-27T15:16:22Z")

</div>

그것은 고정된 게시물에만 표시됩니다. 게시물을 고정 해제하면 언급하신 발췌문이 숨겨집니다. 다른 방법으로는 CSS와 HTML을 사용하여 숨기는 것입니다. 구현 방법에 대한 아이디어를 얻으려면 이 테마 컴포넌트를 참고해 보세요: [Topic List Excerpts](https://meta.discourse.org/t/topic-list-excerpts-theme-component/151520)

---

<div class="post-metadata">

### Author: ![yahyagenc](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/yahyagenc/32/188138_2.png) [@yahyagenc](https://meta.discourse.org/u/yahyagenc)
#### Post date: [7월 28, 2020, 11:40오전 UTC](https://meta.discourse.org/t/how-to-disable-topic-excerpts-in-category-page/158898/3 "2020-07-28T11:40:48Z")

</div>

CSS 코드를 찾아서 필요에 맞게 수정했습니다. 혹시 다른 분들에게도 도움이 될 수 있으니 여기에 공유합니다.

> .topic-list .posts, .topic-list .posters, .topic-list .activity, .main-link .topic-excerpt, .category-list .topics, .topic-map, .small-action.onscreen-post, .post-info.edits{  
> display:none;  
> }

---

<div class="post-metadata">

### Author: ![osioke](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/osioke/32/238946_2.png) [@osioke](https://meta.discourse.org/u/osioke)
#### Post date: [7월 28, 2020, 11:42오전 UTC](https://meta.discourse.org/t/how-to-disable-topic-excerpts-in-category-page/158898/4 "2020-07-28T11:42:37Z")

</div>


