Scandinavian fonts broken on Firefox

Hi! I got lifesaving CSS help from you before in this post: Scandinavian fonts missing A and O dots in Edge

We’ve now noticed that the issue with ä and ö dots still remains, but this time on Firefox. What would be the css to target Firefox browsers, for changing the font that shows on Firefox? It seems to show on older versions of Firefox I guess because it’s not an universal problem on Firefox browsers. Is there a way to target an older version of Firefox specifically? Or just Firefox as a whole?

Hello Bhakti,

Thanks for writing in!

You may use browser specific prefixes in your css. For example for IE and Firefox;

@supports (-ms-ime-align: auto), (-moz-ime-align: auto) {
  body {
        font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif !important;
  }
}

You may find out more about the prefixes here:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.