Hi,
Here is the detailed guide for how to add/install new font in a template based on T3 framework: http://www.t3-framework.org/documentation/bs3-customization#add-fonts
For JA Events II template, you can try the same way:
- Backup your site first
- Define the 'Roboto+mono' font by adding this: <file>//fonts.googleapis.com/css?family=Roboto+Mono</file>
to the XML file: root/templates/ja_events_ii/etc/assets.xml http://prntscr.com/ior9fs
- Go to LESS file: root/templates/ja_events_ii/less/variables.less
Look for the declaration of 'Typography':
// Typography
// -------------------------
@font-family-roboto: 'Roboto Mono', monospace;
@font-family-sans-serif: "Helvetica Neue", 'Roboto', sans-serif;
@font-family-serif: Georgia, "Times New Roman", Times, serif;
@font-family-monospace: Monaco, Menlo, Consolas, "Courier New", monospace;
@font-family-base: @font-family-roboto;
and add variable @font-family-roboto like above and set it as base font family of your site
- If your site is running with Development mode, just refresh your site to see the changes. In case that the Development Mode is off, you need to go to admin panel > Extensions > Templates > select JA Events II template style > hit 'LESS CSS' button to compile less to css (again, remember to backup your site first as when compiling less to css, current css file will be overridden)
Regards