-
How can I globally change the font on a website, including the footer, navbar, and sidebar? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The master location for fonts is in $global-font-family : $sans-serif;
$header-font-family : $sans-serif;
$caption-font-family : $serif; By default the $sans-serif : -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif; If you are going to change the template font is recommended that you define a new font variable that includes fail overs like the |
Beta Was this translation helpful? Give feedback.
-
How to use external font, I installed "Lucida Sans" on my system, and replace in the place of "-apple-system", it worked locally, but not on deployment, why so? |
Beta Was this translation helpful? Give feedback.
The master location for fonts is in
_sass/_variables
and the lines that govern the fonts look like this:By default the
$sans-serif
variable is used which uses the following default and fail overs:If you are going to change the template font is recommended that you define a new font variable that includes fail overs like the
$sans-serif
variable and then assign that variable to the primary variables listed above.