Adding custom fonts

Can you make it so we can add custom fonts to apps

1 Like

Hi there, @Ray_Giangiordano and welcome to the Community :waving_hand:

At the moment, it’s impossible to upload custom fonts to the widget, but we’ll try to think about this option in the future.

As for now, you can choose the default font form in the widget’s settings and the font from your website will be applied to the widget.

If you want to apply different fonts to different widget elements, please specify the fonts and the elements where you’d like to have these fonts. I’ll be happy to help you with a custom solution :wink:

Thanks for you help with this issue.
I have custom fonts for my business and would like to learn about some of those solutions.
I love elfsight. It has made my wix site more presentable and gives me a good online presence.

1 Like

Could you please send me a link to the page, where your widget is installed? Also, please specify the fonts you’d like to use and the elements where you’d like to apply them :slightly_smiling_face:

I have my own fonts. www.infexiousrecords.com

1 Like

I’ve checked your website and haven’t found the Popup widget there, but if I got it right, you’d like to customize the New Sing Up popup.

In this case, here is the CSS code that will help you apply a custom font to each text element of your widget:

/* Text block */

[class*="TextBlock__TextHTML-sc"] {
  font-family: Times New Roman;
}

/* Email field label */

[class*="TextControlBase__TextControlBaseLabel-sc"] {
  font-family: Times New Roman;
}

/* Choice field */

[class*="choice-option__ItemLabel-sc"] {
  font-family: Times New Roman;
}

/* Button text */

[class*="ButtonBase__Ellipsis-sc"] {
  font-family: Times New Roman;
}

Replace Times New Roman with the name of your fonts and let me know if it helped :slightly_smiling_face:

1 Like