[SalesForce] Add new font to community Napili Branding

Can I add new font to the picklist from Napili Branding community?
enter image description here

Best Answer

No - this is not possible.

If you want to add custom fonts, you have to do so through CSS

Branding </>

Download a font file

Convert file to Base64 String,

and , edit CSS in your Community, for Ex:

@Some-Font { 
    font-family: 'FontName'; url(data:font/truetype;charset=utf-8;base64,BASE64_ENCODED_DATA_HERE) format('truetype') 
} 
div {
    font-family: FontNamed; 
}

there is another stackexchange post that addresses how to do this in more detail.

Related Topic