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:
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;
}
jetzt habe ich schon versucht die webfont in die backend fonts.css einzubingen, das ändert jedoch nichts.
original sieht die betreffende zeile in iso_documents_default.html5 so aus:
HTML-Code:
<div style="font-size: 62.5%; font-family: Arial, Helvetica, sans-serif">
jetzt habe ich versucht:
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">
sowie:
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;">
Beides führt aber nciht dazu, dass die Rechnungs-pdf in der webfont erstellt wird.
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?