Font

Hello, i managed to change my font into arial by using this code:
.entry-title, .entry-title a {
font-family: arial;
font-style: normal;
}
now i have two questions:

  1. it is still the same font on my slider, how can i change this?
  2. what fonts are used in the activello theme so i can make my title match with the post

thanks in advance

Hello there,

I hope you are doing well today.

The theme uses the montserrat and lora fonts on most parts of the theme.

You can use the following CSS code to change the font in the slider by going to Appearance > Customize > Additional CSS and pasting it there.


.flex-caption h2 {
    font-family: ariel;
}

Best Regards,
Support

Thank you for the help, i changed the font but it is still the wrong one on my slider.
How can I change it there too?

Download a plugin called “use any font” and you can upload any font you want. There is another plug in that will let you use google fonts, Just search “google fonts” Generally, you have to enter the element you want to change.

Hello there,

As @flyingc stated earlier, you could use the “use any font” plugin to change the font.

Now, here is a new set of CSS code to try out as it should change all the text in the slider :


/*Slider text family*/
.flex-caption .post-categories a, .flex-caption .read-more a, .flex-caption h2  {
    font-family: ariel;
}

Best Regards,
Support