How to change text colour

I imagine it's been set by a Style Property using the Color Palette.

Go to Admin CP > Appearance > Color Palette.

I reckon you'll find the palette colour @primaryLighter is the pinkish-peach type colour. Change it to whatever you like.
 
looks like the subforum grid add-on to change that.Changing that to your preference you can slap that in extra.css template You may have to add !important before the ;

Code:
.subForumsGrid .blockLinksList a, .subForumsGrid .blockLinksList label {
    color: green;
}
And for the sidebar pink text and change accordingly to your preference. But as chris mentioned you can do this via the style properties also.
Code:
.sidebar .section .secondaryContent .footnote, .sidebar .section .secondaryContent .minorHeading {
    color: green;
}
 
looks like the subforum grid add-on to change that.Changing that to your preference you can slap that in extra.css template You may have to add !important before the ;

Code:
.subForumsGrid .blockLinksList a, .subForumsGrid .blockLinksList label {
    color: green;
}
And for the sidebar pink text and change accordingly to your preference. But as chris mentioned you can do this via the style properties also.
Code:
.sidebar .section .secondaryContent .footnote, .sidebar .section .secondaryContent .minorHeading {
    color: green;
}
Great, thanks :)
 
Top Bottom