Re: How to Change the Text Font?
Firebug is an excellent tool to find where you can change things. If you get Firefox and install Firebug (addon) you’ll get tons of work done. With it you can just point at things in the browser and it will tell you the current CSS that’s governing it. You can even add temporary CSS with Firebug to test things out.
The next step is to modify the CSS-changes in some file that you’re using. How proficient are you with that?
Look at:
The last line of style.css is: /* @import url( _inc/css/custom.css ); */. Remove the starting /* and the ending */ on that line. Save the file.
in:
https://codex.buddypress.org/how-to-guides/upgrading-a-buddypress-1-0-theme-for-buddypress-1-1/
In custom.css you can make the changes you want to add. If you’re not proficient with CSS you have to read up on that.