Hi @napalmx37
Currently your site tries to load the font from here:
https://www.guerilla.co.za/komani/HaloHandletter.woff
The problem is related to that the font-family you are trying to load gives a 404 error.
So the problem is probably with the path, what you need to fix where you call in the font:
/* Banner Font*/
@font-face {
font-family: 'HaloHandletter';
font-style: normal;
font-weight: normal;
src: local('HaloHandletter'), url('HaloHandletter.woff') format('woff');
}
The explanation for that you are able to see the font on your pc is that, this font is installed on your machine, so it can load it, howver it isn’t installed on your other devices.
If you would like to more about using custom fonts in the slider on both the frontend and the backend, please check our documentation below:
https://smartslider3.helpscoutdocs.com/article/299-using-your-own-fonts
Best regards,
Laszlo.