# How to remove the fade-out effect when you enter a topic

**URL:** https://meta.discourse.org/t/how-to-remove-the-fade-out-effect-when-you-enter-a-topic/123276
**Category:** Support
**Created:** [7월 18, 2019, 10:11오전 UTC](https://meta.discourse.org/t/how-to-remove-the-fade-out-effect-when-you-enter-a-topic/123276 "2019-07-18T10:11:58Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Arkshine](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/arkshine/32/298682_2.png) [@Arkshine](https://meta.discourse.org/u/Arkshine)
#### Post date: [7월 18, 2019, 10:49오전 UTC](https://meta.discourse.org/t/how-to-remove-the-fade-out-effect-when-you-enter-a-topic/123276/2 "2019-07-18T10:49:26Z")

</div>

The CSS responsible for this effect is `highlighted`.  
This class is dynamically added to the target element and removed once the animation ends.

Dirty fix could be:

```CSS
.highlighted {
    animation: none !important;
}

```

Of course, feel free to prepend any element if you want a specific context.

---

_[View the full topic](https://meta.discourse.org/t/how-to-remove-the-fade-out-effect-when-you-enter-a-topic/123276)._
