Hi there,
You need to create a custom css file first. Simply create a file called "<TEMPLATENAME>-custom.css" and put this file in the CSS folder of the template (where <TEMPLATENAME> is the name of the template as seen in template manager e.g. rt_fracture). GANTRY4 will automatically load this CSS file. If you wish, you can also have browser specific files by appending, for example, "-ie9" making the filename "<TEMPLATENAME>-custom-ie9.css"
Now add the following code..
body {
font-size: 14px;
line-height: 24px;
font-family: Arial, Helvetica, Sans-Serif;
}
Substitute the font-family to match your needs.
Read more about fonts here -
www.gantry-framework.org/documentation/j...rials/custom_font.md
Hope this helps