Is it possible to add google fonts to the print setting?

Is it possible to add google fonts to the print setting?

You can import google fonts directly in the Custom CSS portion of Print Settings

1 Like

I could not find Custom CSS in the print setting, if you have done it please share the code?

Hi @Anunnthorn_Phasittis,

it is a part of the Print Format:

To include a font, use a code block like this:

@font-face {
    font-family: myTimes;
    src: url('/files/times.woff');
}

.print-format {
  font-family: myTimes;
}
3 Likes