Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
1.0k views
in Q2A Core by
I tried to find these lines in qa-style.css but I have dont found. You can see thats messages on my test Q&A site if you try to vote or try to answer without LogIn (from my profile)

1 Answer

+1 vote
by
 
Best answer

The CSS class you're looking for is qa-error.

by
I found the comment error style, but i cant find the answer error style in .css
http://img413.imageshack.us/i/ghjc.jpg/
by
Understood. There is not currently a CSS class for this, but you could simply modify the Q2A code to wrap that message in a <SPAN CLASS="...">...</SPAN>, where the answer_must_login phrase is used.
by
Im not sure how can i do this change and where need to add the SPAN CLASS
by
In qa-page-question.php., change:

qa_lang_html('question/answer_must_login')

... to ...

'<SPAN CLASS="YOUR_CLASS">'.qa_lang_html('question/answer_must_login').'</SPAN>'
by
Thank you gid for your greate support.
...