Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
899 views
in Themes by

I found how to change the background, the user name, "My Updates" and "Logout" in the top bar, but I cannot find where to change the "Hello" and the "(...points)" text. I searched and found several related questions, but no answers that worked for this particular change.

I can't find anything in css related to points. I found

if (qa_is_logged_in()) { // adds points count after logged in username

$userpoints=qa_get_logged_in_points();
 
in the qa-theme.php file, but don't know what to do with that in relation to color


Anyone can point me in the right direction?

Q2A version: 1.7
by
It is the Snow theme.

1 Answer

+1 vote
by
selected by
 
Best answer

To change the "Hello" font use this CSS class:

.qa-logged-in-pad {
    color: red;
}
 
To change the "(... points)" font use this CSS class:
 
.qa-logged-in-points {
    color: red;
}
 
Note if the CSS classes are not in the styles.css file of the theme then just add them.
by
Thank you, that worked great!
...