XF 1.1 What style element is the Followers box on the profile page?

Joshua

Active member
I need to change the style parameters for the Followers sidebox on the profile page. Please see the attached screenshot. What style element is it that controls the text color here?
Screen Shot 2013-07-09 at 4.10.13 PM.webp
 
I need to change the style parameters for the Followers sidebox on the profile page. Please see the attached screenshot. What style element is it that controls the text color here?
View attachment 51015

You can use this to style the right side:

Code:
.pageWidth .textWithCount.subHeading .count {
color: #000;
}

Left side:

Code:
.pageWidth .textWithCount.subHeading .text {
color: #000;
}
 
Top Bottom