Hi,
Exporting a wordpress theme I've noticed, reading the file style.css, that the string "@font-face" have been duplicated (see below):
@font-face
{
font-family:'Amaranth';
font-weight:400;
font-style:Normal;
src:url('Fonts/Amaranth/regular.otf');
}
@font-face
{
font-family:'Amaranth';
font-weight:400;
font-style:Normal;
src:url('Fonts/Amaranth/regular.otf');
}
@font-face
{
font-family:'Amaranth';
font-weight:400;
font-style:Normal;
src:url('Fonts/Amaranth/regular.otf');
}
...but since I used the font "Amaranth" AND the font "Quando" (for some headings), I expected to see a similar string linked to that font.
To properly see the website I had to edit that part of style.css manually adding a string for the font "Quando" (other than adding the font in the "Fonts" folder).
Why?