# How to change post title color when post is scroll up in top menu bar?

**URL:** https://meta.discourse.org/t/how-to-change-post-title-color-when-post-is-scroll-up-in-top-menu-bar/158708
**Category:** Support
**Created:** [July 24, 2020, 5:15pm UTC](https://meta.discourse.org/t/how-to-change-post-title-color-when-post-is-scroll-up-in-top-menu-bar/158708 "2020-07-24T17:15:42Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![s123](https://avatars.discourse-cdn.com/v4/letter/s/f9ae1b/32.png) [@s123](https://meta.discourse.org/u/s123)
#### Post date: [July 24, 2020, 5:15pm UTC](https://meta.discourse.org/t/how-to-change-post-title-color-when-post-is-scroll-up-in-top-menu-bar/158708/1 "2020-07-24T17:15:42Z")

</div>

In Light theme I changed color of top bar to dark blue color. When I scroll post up it show post title color in Black. I would like to change post title color to white. What custom css I should add to make post title color white.

 ![bar](https://global.discourse-cdn.com/meta/original/3X/0/b/0b37ae215a0f9c87af4c189b3a66582e1bb4e4c3.png)  
thanks!

---

<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 24, 2020, 9:48pm UTC](https://meta.discourse.org/t/how-to-change-post-title-color-when-post-is-scroll-up-in-top-menu-bar/158708/2 "2020-07-24T21:48:47Z")

</div>

If you right click anything in your browser you can inspect the element. This will give you the details you need to add CSS. For example:

 ![Screen Shot 2020-07-24 at 5.47.45 PM](https://global.discourse-cdn.com/meta/original/3X/f/0/f074701013c2e0b8b1f11cec0cb8cbc1a87ac66e.png)

So you’d want to add:

```css
.extra-info-wrapper .topic-link {
  color: white; 
}

```

---

<div class="post-metadata">

### Author: ![s123](https://avatars.discourse-cdn.com/v4/letter/s/f9ae1b/32.png) [@s123](https://meta.discourse.org/u/s123)
#### Post date: [July 24, 2020, 10:07pm UTC](https://meta.discourse.org/t/how-to-change-post-title-color-when-post-is-scroll-up-in-top-menu-bar/158708/3 "2020-07-24T22:07:28Z")

</div>

@awesomerobot, thank you so much!
