Viewing 2 reply threads
You must be logged in to reply to this topic.
Hi there
I transfered my Webpage to another Domain. After this transfer, the header font had changed.
If I’m in the costumizer the font is shown right, but as soon as I close it, there is shown a different font which is like the absolute deafult webfont.
You can check it under http://www.distisuisse.ch
I hope for help, thank you very much and wish a nice day.
Hello,
There is a cross-origin issue on your site. Meaning, your site is set to access all links on HTTPS, but some of them are in HTTP. This leads to some links not being pulled. Part of them is the fonts. See screenshot: https://ibb.co/bJ7gh3H
Try this out first: go to WordPress Settings > General, make sure both “WordPress Address (URL)” and “Site Address (URL)” links are in HTTPS.
Then add this in your .htaccess file:
<IfModule mod_headers.c>
<FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>
Ask your host for more detailed help regarding this.
Best regards!
You must be logged in to reply to this topic.