Change the color of the follwing

The number is this class: .textWithCount.subHeading .count
Add some code to EXTRA.css for it, e.g.
.textWithCount.subHeading .count {
color: @primaryDark;
}

The quote box styling can be done in Style Properties -> BB Code Elements -> Quote Attribution Block
 
For the quote check out

Style Properties -> BB Code Elements -> Quote Attribution Block, text color

For the value in the number I couldn't find the style property but you could always add this to extra.css
Code:
.textWithCount.subHeading .count {
color: #FFFFFF !important;
}
 
The number is this class: .textWithCount.subHeading .count
Add some code to EXTRA.css for it, e.g.
.textWithCount.subHeading .count {
color: @primaryDark;
}

The quote box styling can be done in Style Properties -> BB Code Elements -> Quote Attribution Block
For the quote check out

Style Properties -> BB Code Elements -> Quote Attribution Block, text color

For the value in the number I couldn't find the style property but you could always add this to extra.css
Code:
.textWithCount.subHeading .count {
color: #FFFFFF !important;
}
Niether worked in extra.css
 
didnt work for me either, any idea where i can find it in the templates

My original post works for me... in extra:

Code:
.textWithCount.subHeading .count {
color: #000000 !important;
}

I was at work so I couldn't really test it but just got home and it's working for me.
 
Works for me too:

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

Add this code posted by Russ:

Code:
.textWithCount.subHeading .count {
color: #FFFFFF !important;
}
 
Top Bottom