Frontend customization

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?

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

3 Likes

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

You need to create a customization

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

Thanks,

This really helped me a lot. :slight_smile: