How to change stats display on 'about' page?

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?

7 Likes