Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
518 views
in Q2A Core by

Where can I find the folowing sentence: "Before proceeding, please check your question was not asked already:" in PHP files (I want to put it in bold and red).

 

Thanks.

1 Answer

+1 vote
by
selected by
 
Best answer

You can do that by using css instead of doing that in Core php files. Just paste the code below to your theme CSS file.

.qa-ask-similar-title{

font-weight: bold;

color: red;

}

I hope this help.

...