Buddypress: how to change text color

Hi there, while I was setting the background color of my site I’ve found that now I can’t read the text of the members profile: Here is an example: Profile

Is it possibile to change the color of the text?

Hello @Frank73,

Please paste the following code snippet under WordPress backed > Appearance > Customize >Additional CSS to change the text color across your website.

// Change the text color across the body element.
body{
	color: #bc2562;
}

// Change the text color of all the header element.
h1, h2, h3, h4, h5, h6 {
	color: #bc2562;
}

This snippet will override your theme’s text color styling.

Regards,

Deepak Gupta

Hi, this solution will change all the site text color and can become a problem…

Is there a code, then, to change the background of the Buddypress members profile?