Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
225 views
in Themes by
I want to disable all custom font in snowflat theme. browser will use users default system font. How to do that?

1 Answer

+2 votes
by

The simplest way is to update the file qa-theme/SnowFlat/qa-styles.css

Everywhere you see this:

font-family: "Ubuntu", "Helvetica", "Arial", "FreeSans", sans-serif;

Change it to the local fonts you want, e.g.

font-family: "Helvetica", "Arial", "FreeSans", sans-serif;
...