# Introducing nested replies

**URL:** https://meta.discourse.org/t/introducing-nested-replies/402812
**Category:** Announcements
**Tags:** nested-replies
**Created:** [May 12, 2026, 11:21pm UTC](https://meta.discourse.org/t/introducing-nested-replies/402812 "2026-05-12T23:21:22Z")
**Posts on this page:** 1
**Showing post:** 13

<div class="post-metadata">

### Author: ![ToddZ](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/toddz/32/328350_2.png) [@ToddZ](https://meta.discourse.org/u/ToddZ)
#### Post date: [May 13, 2026, 7:19pm UTC](https://meta.discourse.org/t/introducing-nested-replies/402812/13 "2026-05-13T19:19:48Z")

</div>

> [@markvanlan](#):
>
> In flat mode, the various Reply buttons don’t matter as much. The post is going at the bottom of the topic. I’m not sure users always intentionally press the “right one” that would translate to the nested view.

I always felt the “reply” labels could be more specific – so a [while back](https://meta.discourse.org/t/is-there-a-way-to-link-replies-after-they-are-posted/320175/16) I used some custom CSS to add context:

> **screenshot**
>
> ![image](https://global.discourse-cdn.com/meta/original/4X/0/f/a/0fa70cd341386b1057696ffa628a7e39e2ae0c3b.png)

> **CSS**
>
> ```css
> /* add text to Reply button for the original post (aka Topic) */
> #post_1 nav.post-controls {
> .actions {
> button.reply {
> span.d-button-label:after {
> // Adding this content after Reply
> content: " to this Topic";
> }
> }
> }
> }
> 
> /* add text to Reply button for all subsequent posts (I'm calling them comments) */
> nav.post-controls {
> .actions {
> button.reply {
> span.d-button-label:after {
> // Adding this content after Reply
> content: " to this comment";
> }
> }
> }
> }
> 
> /* add text to blue Reply (to Topic) button appearing at the end of the page */
> #topic-footer-buttons {
> .topic-footer-main-buttons {
> button.btn-primary.create {
> span.d-button-label:after {
> // Adding this content after Reply
> content: " to main Topic";
> }
> }
> }
> }
> 
> ```

---

_[View the full topic](https://meta.discourse.org/t/introducing-nested-replies/402812)._
