Reply To: Add custom font

Support Forums Cian – WP Theme Add custom font Reply To: Add custom font

#4352
CreaboxThemes
Keymaster

Hi woohoogle,

I will upload the fonts files to the media library and I will copy all the url’s. Then, in the page Appeareance > Theme Options > Custom Scripts, in the option ‘Custom CSS’, you have to add the fonts in this way:

@font-face {
    font-family: myFirstFont;
    src: url(font_file.ttf);
}

div {
    font-family: myFirstFont;
}

Regards