font-family: ‘KozGoPr6N-Regular-AlphaNum’;
but you are trying to access the font with this:
font-family : Kozuka Gothic Pr6n;
Those names must match in order for the font to be used.
I also suggest that you do not use spaces or utf8 characters in the font name. You should also combine the two @font-face
declarations since they are defining the same font. You might also want to get rid of the base64-encoded woff font and instead load it from a file.
EDIT: I really wish BBpress had a “notify poster if a post was made while you were composing your post” feature. All other board software has it…
]]>I tried to change the the code from
font-family : Kozuka Gothic Pr6n;
to
font-family: ‘KozGoPr6N-Regular-AlphaNum’;
but when I am doing this the font won’t change and still stays in Times new roman. On my laptop everything is fine and the font is showing perfectly as It should, but on random laptops the font is always loading the times font.
Maybe I am doing something wrong here ? ??
I did also add this directly to my child themes stylesheet :
@font-face {
font-family:”KozGoPr6N-Regular-AlphaNum”;
src: url(“fonts/KozGoPr6N-Regular-AlphaNum.eot”);
src: url(“fonts/KozGoPr6N-Regular-AlphaNum.eot?#iefix”) format(“embedded-opentype”),
url(“fonts/KozGoPr6N-Regular-AlphaNum.woff”) format(“woff”),
url(“fonts/KozGoPr6N-Regular-AlphaNum.ttf”) format(“truetype”),
url(“fonts/KozGoPr6N-Regular-AlphaNum.svg”) format(“svg”);
font-weight: normal;
font-style: normal;
}
because it was said here : https://help.us-themes.com/impreza/faq/
[Moderator note: Please, No bumping.
]]>