How to change the font to a lighter color for this area?:

CritiKiL

Active member
In the News Feed, the text is black and so is the background. How exactly do I change the color of the font on the 'right-side' to white? Here' a picture and the highlighted areas (right-sides) are what I need to show in white:

file_newsfeedfont.jpg
 
In the default style that uses @contentText:

Admin CP -> Appearance -> Color Palette

Or you can override it with custom CSS:

Admin CP -> Appearance -> Templates -> EXTRA.css

Code:
.event .content .description em
{
	color: #123456 !important;
}
 
Top Bottom