XF 1.2 Help editing this particular text

I downloaded the add-on and tried it out, but not exactly sure what I'm looking for :/ It shows the font color, but I still don't know where to go to change it (copying the code and changing the color doesn't seem to work either)
 
Here are the steps:

1) Right-click the Word "Replies:"
2) Select Inspect Element with Firebug
3) Copy the highlighted text ".pairsJustified dt {"
4) Put the following into the EXTRA.css template

Code:
.pairsJustified dt {
color:red;
}
 
Using that class will affect every element which uses it, on every page.
Always use more specificity than less, to target the element exactly.
Code:
.discussionList .stats.pairsJustified dt {
color:red;
}
 
Top Bottom