Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
3.8k views
in Q2A Core by
How to change default font for questions and answers for all users without need to change it through editor? I mean admin sets a default font style and size for all users. But users still can change it.
Q2A version: 1.4.3

1 Answer

+2 votes
by
selected by
 
Best answer

This should be possible using your theme's CSS. Just add !important to the end of any font-family CSS rules. For example in the default theme, change line 39 to read:

body,td,input,textarea {font-size:12px; font-family:Verdana, Arial, Helvetica, sans-serif !important;}

...