How do I adjust this text color?

How can I adjust the, I believe it's called the attribution, text color?
View attachment 14927

That would be the .bbCodeQuote .attribution classes at the bb_code.cs template. Change there the color to whatever color you want it to be:

i.e. this part:

Code:
.bbCodeQuote .attribution
{
    @property "bbCodeQuoteAttribution";
    color: blue;
    background: @secondaryLighter url('@imagePath/xenforo/gradients/category-23px-light.png') repeat-x top;
    border-bottom: 1px solid @secondaryLight;
    @property "/bbCodeQuoteAttribution";
}

Or create a class with the same name and add the color atribbute/value to the EXTRA.css template and it will overwrite it.

Edit: Brogan 's way would be better and faster. I forget how easy xenforo is in styling.
 
Top Bottom