Document template Font styling

0
Hi Community Members, I am using a Document template in Mendix 8.18.23. I have a text in the document template for which I need the font family to be "Brush Script MT." However, the document template supports only default fonts, and when I try custom styling with `font-family: "Brush Script MT", cursive;`, it does not work. Any ideas would be appreciated to achieve the expected font for the text. Thanks in advance!
asked
2 answers
0

Hi Rishi,

Can you please try out below link

 

https://forum.mendix.com/link/space/app-development/questions/4753

 

Hope it works

answered
0

Resolved.

The answer is font-triplet name is user defined, the same userdefined name should be mentioned in CSS. 

Note: lowercase only allowed for font-triplet name. eg., bradleyhanditc, myown..

CSS should be 

font-family:myown;

font-family:bradleyhanditc;

answered