Do you use Firefox? Grab the Firebug add-on and it makes it a cinch to edit the css, among other things.
OK, but I need to individually edit the colour of the title as if I make it white the entire content goes white.
To accomplish that, yu have to change the style sheet from the “buddypress” theme CSS (style.css), of course if you are using it for the home theme.
And remember that when you access to a member option, the theme used is the “buddypress-member” look 4 the style.css on the folder and make the changes too, i did so to have a correspondence between site colors.
Yes, but what exactly do I change or add?
Ok, the widget title color is inherited in the H2 tag declared before… so, if you want to change the color, i would add the: “add this” at the style sheet. The welcome widget has its own class declared down or up, if you want to change the h2 color of the welcome title look at the code and put your color there, but it´s explicitly declared so change the color.
.widget {
margin: 0 0 25px 0;
}
h2.widgettitle {
/* add this */
color: red !important;
/* end of add this */
padding: 3px 8px;
margin-bottom: 5px;
height: 36px;
font-weight: bold;
}