# Mobile template: show the replies button

**URL:** https://meta.discourse.org/t/mobile-template-show-the-replies-button/164772
**Category:** UX
**Created:** [September 21, 2020, 11:14pm UTC](https://meta.discourse.org/t/mobile-template-show-the-replies-button/164772 "2020-09-21T23:14:13Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Ed\_Bobkov](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ed_bobkov/32/200014_2.png) [@Ed\_Bobkov](https://meta.discourse.org/u/Ed_Bobkov)
#### Post date: [September 21, 2020, 11:14pm UTC](https://meta.discourse.org/t/mobile-template-show-the-replies-button/164772/1 "2020-09-21T23:14:13Z")

</div>

On a Desktop I see a very useful grouping:

 ![image](https://global.discourse-cdn.com/meta/original/3X/6/b/6b09d55639a0797195db6f2107b718e434a89402.png)

But on the mobile the same page lacks this button:

 ![Screenshot_2020-09-22-01-09-35](https://global.discourse-cdn.com/meta/original/3X/7/8/78a217f19b0c2218b8b41982ec98327161f71669.jpeg)

Is it possible to show on a mobile this button: `widget-button btn-flat show-replies btn-icon-text` like on this page?

 ![image](https://global.discourse-cdn.com/meta/original/3X/b/d/bdbc68811f0cc0e01c1dcf8cca2be29db6a7e610.png)

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [September 21, 2020, 11:38pm UTC](https://meta.discourse.org/t/mobile-template-show-the-replies-button/164772/2 "2020-09-21T23:38:06Z")

</div>

There are some necessary simplifications for the smaller screen; this is one of them.

---

<div class="post-metadata">

### Author: ![Ed\_Bobkov](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ed_bobkov/32/200014_2.png) [@Ed\_Bobkov](https://meta.discourse.org/u/Ed_Bobkov)
#### Post date: [September 21, 2020, 11:39pm UTC](https://meta.discourse.org/t/mobile-template-show-the-replies-button/164772/3 "2020-09-21T23:39:08Z")

</div>

Here is a solution:

```
.show-replies {
  display: block!important;
}
.embedded-posts {
    border: 1px solid var(--primary-low)!important;
}

```
