Two different fonts

Is it possible to have different two different font on one slide i.e. title and text differently. Its regarding the slider app, please let me know am using Wix.

1 Like

Hi @user3853

Could you please specify what fonts you’d like to have?

Avenir for the title and Helvetica light for the text

1 Like

Thank you! I’ll check things with our devs and get back to you really soon :slightly_smiling_face:

1 Like

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 there is a workaround

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>
.eapp-slider-title-component {
font-family: avenir-lt-w01_85-heavy1475544,avenir-lt-w05_85-heavy,sans-serif;
}
.eapp-slider-text-component {
font-family: Helvetica, sans-serif;
}
</style>

Please add the CSS code above right after the widget’s installation code and let me know if it helped.

1 Like