Hi Tracy
The reason it's doing this is because the memberinfo text color is also linked to this stylevar body_color.
So changing that will also alter your text color in your member profile.
To get around this try
Style Manager > Css templates > member.css
and find the following
#usermenu li a {
color: {stylevar body_color}
}
Change the color to sometyhing like this:
#usermenu li a {
color: #F70CDB;
}
|