Downloaded Font Is Displayed Differently In Browser
Solution 1:
There’s probably only one weight of this font, ie. a single style with no bold version or other variants.
By default, h1
and all other headings are set to be bold, so you are probably getting some faux bolding, created by the browser.
Try adding:
.brandh1 {
font-family: Glamora;
/* Etc. */font-weight: normal;
}
I was able to reproduce your issue, and adding font-weight: normal;
fixed it:
This might also have something to do with how the font outlines or how the font file was built, or the fact that it hasn’t been produced as a web font.
The license doesn’t appear to allow converting it into a web font, but it might be worth getting in touch with the designer and seeing if they would produce WOFF and WOFF2 files for you, or modify the license to allow converting the format. That said, that might not impact the issue, and this CSS change does fix it.
Post a Comment for "Downloaded Font Is Displayed Differently In Browser"