Number Counter on Wix: not correct font

  • Issue description:
    Hi all, I am new to elf sight and am using the number counter. The number counter on elf sight looks good, I was able to insert my font. But if I paste the code to Wix HTML component, it does not copy the style of it. How do I solve that?

  • Link to the page with the widget in question:
    https://www.bh-treuhand.ch

Thank you,
Sabrina

1 Like

Which font did you choose here?
image

Greetings @user4771

Due to the peculiarities of the Wix platform, our app supports only the most popular fonts.

However, we have two workarounds here:

  1. You can use this CSS code containing all the supported fonts. The first font that is enabled on your website will be applied to your widget right away.
<!doctype html>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
</style>

Please add the CSS code above right after the widget’s installation code and you are good.

  1. You can also apply any free Google font you wish to the widget.
    Here is an article that explains how you can do it - How to change the font of the widget on Wix.

Please let me know if it worked or if there’s anything else I could do for you :slightly_smiling_face:

1 Like