Hi,
may I have a short comment/question?
I am just wondering if the referencing is ok?
If I see this URL
https://www.zwickts-di.at/fonts/meowscript-regular-webfont.woff I would assume that the path might not be correct, except your fonts folder is directly in the joomla root.
If you mean the fonts folder in the template J51_Nina it should look like this:
https://www.zwickts-di.at/templates/j51_nina/fonts/meowscript-regular-webfont.woff
If you copy the css code for the fonts from
https://google-webfonts-helper.herokuapp.com/fonts/meow-script?subsets=latin
you could place it e.g. in your custom.css and that file is located in /templates/j51_nina/css.
If you do it like this, the CSS code from webfonts helper points one level down to
/templates/j51_nina and then one level up to
/templates/j51_nina/fonts.
Example:
@font-face {
font-family: 'Noto Sans TC';
font-style: normal;
font-weight: 100;
src: url('../fonts/noto-sans-tc-v2-latin-100.eot'); /* IE9 Compat Modes */
src: local('Noto Sans TC Thin'), local('NotoSansTC-Thin'),
url('../fonts/noto-sans-tc-v2-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../fonts/noto-sans-tc-v2-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
url('../fonts/noto-sans-tc-v2-latin-100.woff') format('woff'), /* Modern Browsers */
url('../fonts/noto-sans-tc-v2-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
url('../fonts/noto-sans-tc-v2-latin-100.svg#NotoSansTC') format('svg'); /* Legacy iOS */
}
If you then put all font files to the
/templates/j51_nina/fonts folder, the reference is fine.
Hope this helps.
Oliver