# Show pinned posts as title only?

**URL:** https://meta.discourse.org/t/show-pinned-posts-as-title-only/37144
**Category:** UX
**Created:** [December 26, 2015, 7:29am UTC](https://meta.discourse.org/t/show-pinned-posts-as-title-only/37144 "2015-12-26T07:29:49Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![ljpp](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ljpp/32/96506_2.png) [@ljpp](https://meta.discourse.org/u/ljpp)
#### Post date: [December 26, 2015, 7:29am UTC](https://meta.discourse.org/t/show-pinned-posts-as-title-only/37144/1 "2015-12-26T07:29:49Z")

</div>

The pinned topics eat too much vertical space. On my mobile devices all I can see without scrolling in a category is 1-2 pinned topics, as the first paragraph is shown on the topic list.

Is there a way to reduce the pinned topics as **title only** in the topic list views, especially for mobile? I think this should be default behavior.

---

<div class="post-metadata">

### Author: ![Yuun](https://avatars.discourse-cdn.com/v4/letter/y/977dab/32.png) [@Yuun](https://meta.discourse.org/u/Yuun)
#### Post date: [December 26, 2015, 2:23pm UTC](https://meta.discourse.org/t/show-pinned-posts-as-title-only/37144/2 "2015-12-26T14:23:06Z")

</div>

Admin → Customize → CSS/HTML

Mobile CSS:

```plaintext
.topic-list {
     .topic-excerpt {
        display: none;
    }
}

```
