Hi,
How can I set a font for the slides? The font appears different when I insert the widget in Wix.
1 Like
Hi @William_Schepis welcome back.
using this code in the Custom CSS field on the Settings tab of your widget’s settings
Use !important if Wix overrides it.
.eapp-slider-title-component {
font-family: Calibri;
}
.eapp-slider-text-component {
font-family: Calibri;
}
.eapp-slider-button-component {
font-family: Calibri;
}
Hey there, guys ![]()
@Sina, many thanks for your involvement! Your code would work great on most websites, but, unfortunately, not on Wix.
@William_Schepis, due to the peculiarities of the Wix platform, our app supports only the most popular fonts, my apologies for the inconvenience!
However, I’m happy to say that we have two workarounds here:
- 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.
- 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 ![]()