# Frontend customization

**URL:** https://meta.discourse.org/t/frontend-customization/60362
**Category:** Development
**Created:** [2017年四月3日 10:56 UTC](https://meta.discourse.org/t/frontend-customization/60362 "2017-04-03T10:56:08Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![shalz](https://avatars.discourse-cdn.com/v4/letter/s/53a042/32.png) [@shalz](https://meta.discourse.org/u/shalz)
#### Post date: [2017年四月3日 10:56 UTC](https://meta.discourse.org/t/frontend-customization/60362/1 "2017-04-03T10:56:08Z")

</div>

Hi I was able to edit all font sizes and colors. But hard to find where to edit the last-posted-at date color. Can some one help me?

 ![](https://global.discourse-cdn.com/meta/original/3X/7/b/7ba9c14e67579cbd84880ca80d8b31eca8e5f451.PNG)

---

<div class="post-metadata">

### Author: ![cpradio](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/cpradio/32/4970_2.png) [@cpradio](https://meta.discourse.org/u/cpradio)
#### Post date: [2017年四月3日 11:12 UTC](https://meta.discourse.org/t/frontend-customization/60362/2 "2017-04-03T11:12:13Z")

</div>

Try to follow these directions on how to use developer tools to figure out the CSS you need to add in your site customization  
[https://meta.discourse.org/t/discourse-default-font-color/59995/5?u=cpradio](https://meta.discourse.org/t/discourse-default-font-color/59995/5)

---

<div class="post-metadata">

### Author: ![shalz](https://avatars.discourse-cdn.com/v4/letter/s/53a042/32.png) [@shalz](https://meta.discourse.org/u/shalz)
#### Post date: [2017年四月3日 12:12 UTC](https://meta.discourse.org/t/frontend-customization/60362/3 "2017-04-03T12:12:05Z")

</div>

I tried this earlier. the element is .category-list .featured-topic a.last-posted-at which i am not able to find in css cutomization

---

<div class="post-metadata">

### Author: ![cpradio](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/cpradio/32/4970_2.png) [@cpradio](https://meta.discourse.org/u/cpradio)
#### Post date: [2017年四月3日 13:52 UTC](https://meta.discourse.org/t/frontend-customization/60362/4 "2017-04-03T13:52:38Z")

</div>

You need to create a customization

```plaintext
.category-list .featured-topic a.last-posted-at {
  color: #000; /* your color here */
}

```

---

<div class="post-metadata">

### Author: ![shalz](https://avatars.discourse-cdn.com/v4/letter/s/53a042/32.png) [@shalz](https://meta.discourse.org/u/shalz)
#### Post date: [2017年四月3日 15:53 UTC](https://meta.discourse.org/t/frontend-customization/60362/5 "2017-04-03T15:53:38Z")

</div>

Thanks,

This really helped me a lot. 🙂
