# How to disable the banner topic dismiss button?

**URL:** https://meta.discourse.org/t/how-to-disable-the-banner-topic-dismiss-button/156763
**Category:** Support
**Created:** [July 4, 2020, 7:43am UTC](https://meta.discourse.org/t/how-to-disable-the-banner-topic-dismiss-button/156763 "2020-07-04T07:43:51Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![sharkdeng](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sharkdeng/32/184854_2.png) [@sharkdeng](https://meta.discourse.org/u/sharkdeng)
#### Post date: [July 4, 2020, 7:43am UTC](https://meta.discourse.org/t/how-to-disable-the-banner-topic-dismiss-button/156763/1 "2020-07-04T07:43:51Z")

</div>

Hello, I wonder how to hide the banner topic dismiss buttong (right corner ). I don’t want users to dismiss the banner topic and in ther future, I would add sliders to add more dynamic vibe.

 ![Screen Shot 2020-07-04 at 5.41.21 PM](https://global.discourse-cdn.com/meta/original/3X/7/1/7130ce4a5cd52f56d869b05f94b7cf196867e6ce.png)

---

<div class="post-metadata">

### Author: ![j.jaffeux](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/j.jaffeux/32/60297_2.png) [@j.jaffeux](https://meta.discourse.org/u/j.jaffeux)
#### Post date: [July 4, 2020, 8:55am UTC](https://meta.discourse.org/t/how-to-disable-the-banner-topic-dismiss-button/156763/2 "2020-07-04T08:55:51Z")

</div>

You can just add css in your theme to target it and hide it.

---

<div class="post-metadata">

### Author: ![j.jaffeux](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/j.jaffeux/32/60297_2.png) [@j.jaffeux](https://meta.discourse.org/u/j.jaffeux)
#### Post date: [July 5, 2020, 8:55am UTC](https://meta.discourse.org/t/how-to-disable-the-banner-topic-dismiss-button/156763/3 "2020-07-05T08:55:51Z")

</div>

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.

---

<div class="post-metadata">

### Author: ![Tris20](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tris20/32/264639_2.png) [@Tris20](https://meta.discourse.org/u/Tris20)
#### Post date: [November 22, 2022, 12:20am UTC](https://meta.discourse.org/t/how-to-disable-the-banner-topic-dismiss-button/156763/4 "2022-11-22T00:20:03Z")

</div>



---

<div class="post-metadata">

### Author: ![Tris20](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tris20/32/264639_2.png) [@Tris20](https://meta.discourse.org/u/Tris20)
#### Post date: [November 22, 2022, 12:20am UTC](https://meta.discourse.org/t/how-to-disable-the-banner-topic-dismiss-button/156763/5 "2022-11-22T00:20:10Z")

</div>

For anyone else solving the same problem, you can just add this css

```css
#banner .floated-buttons>.btn {
    display: none;
}

```

to the Common → Css tab in a new Theme Component

 ![image](https://global.discourse-cdn.com/meta/original/4X/b/7/7/b77796ab49625aab695ecaf5467a05f26cfbcede.png)

---

<div class="post-metadata">

### Author: ![Tris20](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tris20/32/264639_2.png) [@Tris20](https://meta.discourse.org/u/Tris20)
#### Post date: [November 22, 2022, 12:20am UTC](https://meta.discourse.org/t/how-to-disable-the-banner-topic-dismiss-button/156763/6 "2022-11-22T00:20:50Z")

</div>


