Reply To: Can´t upload any font.

Home Forums Use Any Fonts Can´t upload any font. Reply To: Can´t upload any font.

#5868
Carlos
Guest

Hi Dinesh,

At the end I found the issue, I don’t know the reason of the problem, but at least I know how to fix it.

Looking with the developer tool of Chrome I found the problem in one file of the CSS called “uaf.css” on the root wp-content / uploads / useanyfont /.

This file content:

body, h1, h2, h3, h4, h5, h6, p, blockquote, li, a{
font-family: ” !important;
}

To fix the problem you only have to put the name of your font upoladed between the ”.

for example (the name of my font is Drugs)

body, h1, h2, h3, h4, h5, h6, p, blockquote, li, a{
font-family: ‘Drugs‘ !important;
}

and that’s it, altmost for me it worked and now everything it’s ok.

Thank you and I hope this is useful for you.