• Resolved napalmx37

    (@napalmx37)


    I’m using a webfont on my page. The weird thing is that it shows correctly in the preview when I’m editing the slider, and on the pc version of the site, but in the tablet and mobile version it defaults to another font?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support Laszlo

    (@laszloszalvak)

    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.

Viewing 1 replies (of 1 total)
  • The topic ‘Webfont issue’ is closed to new replies.