Changing Font family in parallax

So… hi everybody!

i roamed the forums in search of an answer to my question but it seems that noone worked!
Im building my first WP site and i cant find a way to change the font family in the parallaxs.
Could anyone give me some CSS code to play with?

Thanks.

Hey there

I hope you are well today.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Appearance -> Customize -> Additional CSS

/*change font in parallax section */
#shapely_home_parallax-2 h1 {
    font-family: fantasy;
}
.shapely_home_parallax {
    font-family: fantasy;
}

.shapely_home_parallax h1{
    font-family: fantasy;
}

.shapely_home_parallax h2{
    font-family: fantasy;
}

.shapely_home_parallax h3{
    font-family: fantasy;
}

Style Bot is a great google chrome extension you can use to target css selectors.

Here’s a tutorial on how to add custom font to WordPress:

Best Regards,
Support

It did work but not how i wanted.

Im trying to use a custom font (Andada) that i imported in WP and im already using on my other pages.
So it changes it to fantasy font bot not to Andada.

Hey there,

Thank you for replying with that information.

Given that you’ve imported the font successfully, all you’ll have to do is simply change the font family change
font-family: fantacy;
to
font-family: Andada;

Best regards,
Support.