We are using a custom font family and the numbers written in parentheses are automatically rendered into circled numbers. The fonts are imported via @font-face in css. Any suggestions on how to avoid that?
Asked
Active
Viewed 287 times
2
-
1Try disabling ligatures E.g https://stackoverflow.com/questions/38926144/css-disable-font-ligatures-in-all-browsers – Alex K. Jul 26 '19 at 15:05
2 Answers
2
The below code will fix it. Thank you.
* {
font-variant-ligatures: none;
}

Ciprian Amaritei
- 73
- 1
- 8
0
Without your having provided information about your system, code, or font file, I can only provide the following:
- attempt systematically troubleshooting, or edit in the details I mention above
- use the unicode
U+0028
or html entity(
for your left parenthesis - use the unicode
U+0029
or html entity)
for your right parenthesis
Let us know if this helps, or provide greater detail for us to respond to.
References:

Parapluie
- 714
- 1
- 7
- 22