Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
554 views
in Q2A Core by

I changed the color

.qa-user-link {
color: #fff;

and it changes everywhere, and I need to set only the top (link next to the My Account)

Q2A version: Q2A version: 1.3.3
by
username in login bar? or everywhere?
by
Yes, I need only in login bar

1 Answer

0 votes
by
selected by
 
Best answer

Add below code in qa-styles.css of SNOW theme either at the end of all style or after .qa-user-link class

 

.qa-logged-in-data .qa-user-link  {
color:#ff0000 !important;
}
 
Make sure it should be below .qa-user-link
by
Thank you for it!
...