# Create New Topic, Quote

**URL:** https://meta.discourse.org/t/create-new-topic-quote/123776
**Category:** UX
**Created:** [July 23, 2019, 8:31pm UTC](https://meta.discourse.org/t/create-new-topic-quote/123776 "2019-07-23T20:31:15Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Eduardo\_Braga](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/eduardo_braga/32/110348_2.png) [@Eduardo\_Braga](https://meta.discourse.org/u/Eduardo_Braga)
#### Post date: [July 23, 2019, 8:31pm UTC](https://meta.discourse.org/t/create-new-topic-quote/123776/1 "2019-07-23T20:31:15Z")

</div>

what is it for? does not work

 ![citar](https://global.discourse-cdn.com/meta/original/3X/2/a/2a33dfa5bb42f0570c2b215faf5d0b2df7830f31.png)

[https://global.discourse-cdn.com/meta/original/3X/a/9/a93c66601eff008eaf2c4543d63a348ec5e0bfc8.MP4](https://global.discourse-cdn.com/meta/original/3X/a/9/a93c66601eff008eaf2c4543d63a348ec5e0bfc8.MP4)

---

<div class="post-metadata">

### Author: ![Mr.X\_Mr.X](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mr.x_mr.x/32/126610_2.png) [@Mr.X\_Mr.X](https://meta.discourse.org/u/Mr.X_Mr.X)
#### Post date: [July 23, 2019, 9:27pm UTC](https://meta.discourse.org/t/create-new-topic-quote/123776/2 "2019-07-23T21:27:21Z")

</div>

> [@Eduardo\_Braga](#):
>
> what is it for? does not work
> 
> ![citar](https://global.discourse-cdn.com/meta/original/3X/2/a/2a33dfa5bb42f0570c2b215faf5d0b2df7830f31.png)
> 
> [https://global.discourse-cdn.com/meta/original/3X/a/9/a93c66601eff008eaf2c4543d63a348ec5e0bfc8.MP4](https://global.discourse-cdn.com/meta/original/3X/a/9/a93c66601eff008eaf2c4543d63a348ec5e0bfc8.MP4)

Result above.

That’s the show quote in reply button. Replies are not quoting the replied message by default so by clicking the quote button it will be more obvious for readers to know to what you have replied to.

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [July 23, 2019, 9:41pm UTC](https://meta.discourse.org/t/create-new-topic-quote/123776/3 "2019-07-23T21:41:54Z")

</div>

When creating a new topic you can navigate to an existing topic and click that button to quote it. You’re right that it only functions in certain situations, it’s pretty rarely used for new topics.

---

<div class="post-metadata">

### Author: ![Eduardo\_Braga](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/eduardo_braga/32/110348_2.png) [@Eduardo\_Braga](https://meta.discourse.org/u/Eduardo_Braga)
#### Post date: [July 23, 2019, 10:12pm UTC](https://meta.discourse.org/t/create-new-topic-quote/123776/4 "2019-07-23T22:12:46Z")

</div>

but why does the button exist when creating a new topic?

---

<div class="post-metadata">

### Author: ![Eduardo\_Braga](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/eduardo_braga/32/110348_2.png) [@Eduardo\_Braga](https://meta.discourse.org/u/Eduardo_Braga)
#### Post date: [July 23, 2019, 10:14pm UTC](https://meta.discourse.org/t/create-new-topic-quote/123776/5 "2019-07-23T22:14:28Z")

</div>

is it possible to remove via css?

The button is not useful when creating a new topic, It does not work.

For answer only 🤔

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [July 23, 2019, 11:40pm UTC](https://meta.discourse.org/t/create-new-topic-quote/123776/6 "2019-07-23T23:40:15Z")

</div>

It _does_ work, but only if you’re creating a new topic while viewing another topic.

To hide it with CSS:

```css
#reply-control.topic {
  .d-editor-button-bar {
    .quote {
      display: none;
    }
  }
}

```
