Hello!
I’m currently using the Emerge theme and successfully installed custom fonts using the code below. I inserted the custom code as advised from the theme developer in the custom-styles.liquid.
However, the Emerge theme appears to apply a letter-spacing of -1px (see screenshot). So I added +1 for letter spacing in my custom code - but that doesn’t seem to balance it.
@font-face {
font-family: 'TitlingGothicFBComp-Bold';
src: url({{'TitlingGothicFBComp-Bold.woff2' | asset_url }}) format('woff2'),
url({{'TitlingGothicFBComp-Bold.woff' | asset_url }}) format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
h1 { font-family: 'TitlingGothicFBComp-Bold' !important; letter-spacing: +1px; }
Any thoughts on how to solve this matter?
Thanks!
