Wie verwende Ich webfonts in der iso_document_default.html5?
Hier meine erfolglosen Versuche:
Im frontend habe ich die webfont erfolgreich so einbinden können:
jetzt habe ich schon versucht die webfont in die backend fonts.css einzubingen, das ändert jedoch nichts.PHP-Code:@font-face {
font-family: 'Karla';
src: url('/files/fonts/karla-regular-webfont.woff2') format('woff2'),
url('/files/fonts/karla-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
original sieht die betreffende zeile in iso_documents_default.html5 so aus:
jetzt habe ich versucht:HTML-Code:<div style="font-size: 62.5%; font-family: Arial, Helvetica, sans-serif">
sowie:HTML-Code:<style>@font-face { font-family: 'Karla'; src: url('/files/fonts/karla-italic-webfont.woff2') format('woff2'), url('/files/fonts/karla-italic-webfont.woff') format('woff'); font-weight: normal; font-style: normal; } div { font-family: Karla; font-weight: normal; }</style> <div style="font-size: 62.5%; font-family: Karla">
Beides führt aber nciht dazu, dass die Rechnungs-pdf in der webfont erstellt wird.HTML-Code:<div style="font-size: 62.5%; font-family: Karla; src: url('/files/fonts/karla-italic-webfont.woff2') format('woff2'), url('/files/fonts/karla-italic-webfont.woff') format('woff'); font-weight: normal; font-style: normal;">
Auch ein Hinzufügen der webfont zur backend fonds.css führt zu keinem Ergebnis.
(Gleiches Ergebnis habe ich natürlcih mit der isotope_documents)
Wo ist mein Denkfehler?

Zitieren

Hint please.