# How to change stats display on 'about' page?

**URL:** https://meta.discourse.org/t/how-to-change-stats-display-on-about-page/63298
**Category:** Support
**Created:** [May 24, 2017, 5:09pm UTC](https://meta.discourse.org/t/how-to-change-stats-display-on-about-page/63298 "2017-05-24T17:09:33Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![MakaryGo](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/makarygo/32/187426_2.png) [@MakaryGo](https://meta.discourse.org/u/MakaryGo)
#### Post date: [May 24, 2017, 5:09pm UTC](https://meta.discourse.org/t/how-to-change-stats-display-on-about-page/63298/1 "2017-05-24T17:09:33Z")

</div>

Hi there.  
I’d like to show exact stats on our ‘about’ page, that is not ‘3.2k’ but _exact number_.  
How can I achieve this?

---

<div class="post-metadata">

### Author: ![GlitchMr](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/glitchmr/32/96700_2.png) [@GlitchMr](https://meta.discourse.org/u/GlitchMr)
#### Post date: [May 24, 2017, 5:28pm UTC](https://meta.discourse.org/t/how-to-change-stats-display-on-about-page/63298/2 "2017-05-24T17:28:22Z")

</div>

The part of code that is responsible for rounding the number is a template, to be exact `/app/assets/javascripts/discourse/templates/about.hbs`. In this file, you can get rid of number formatting.

However, please note that you can already see accurate numbers by hovering over a number.

---

<div class="post-metadata">

### Author: ![dax](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/dax/32/244677_2.png) [@dax](https://meta.discourse.org/u/dax)
#### Post date: [May 24, 2017, 5:38pm UTC](https://meta.discourse.org/t/how-to-change-stats-display-on-about-page/63298/3 "2017-05-24T17:38:10Z")

</div>

I can’t find the thread now, but @Mittineague shared few months ago some CSS to display the exact numbers in the About page

```
section.about.stats span.number[title] {
 color: #FFF; 
}
section.about.stats span.number[title]::before {
 content: attr(title);
 color: #000;
}

```

EDIT: found [How do I make the about page show exact post counts?](https://meta.discourse.org/t/how-do-i-make-the-about-page-show-exact-post-counts/52296)

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [May 24, 2017, 11:14pm UTC](https://meta.discourse.org/t/how-to-change-stats-display-on-about-page/63298/4 "2017-05-24T23:14:01Z")

</div>

Why do you need to? Just hover your mouse over to see the actual number, this is always the case in the Discourse UI:

 ![](https://global.discourse-cdn.com/meta/original/3X/b/d/bdba2a277a9bc61b7fd993e32455a755f6b86f10.png)

---

<div class="post-metadata">

### Author: ![MakaryGo](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/makarygo/32/187426_2.png) [@MakaryGo](https://meta.discourse.org/u/MakaryGo)
#### Post date: [May 25, 2017, 6:57am UTC](https://meta.discourse.org/t/how-to-change-stats-display-on-about-page/63298/5 "2017-05-25T06:57:43Z")

</div>

Thanks for all the replies

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [June 8, 2024, 12:44pm UTC](https://meta.discourse.org/t/how-to-change-stats-display-on-about-page/63298/6 "2024-06-08T12:44:39Z")

</div>

This topic was automatically closed after 2571 days. New replies are no longer allowed.
