As I develop a new online store on Tictail (not yet live, so no link available), I am encountering an issue with the font PT Sans Narrow
. While it appears correctly in Safari and Firefox on my iMac, my friend notices display problems when using Firefox and Internet Explorer on his PC.
This is the snippet of code that I am currently working with:
<link href="{{assets_url}}/shared/css/base.css" rel="stylesheet" type="text/css">
body {
background-color: #fff;
font-family: 'PT Sans Narrow', sans-serif;
letter-spacing: -0.02em;
font-size: 14px;
line-height: 1.5em;
color: #222;
-webkit-font-smoothing:antialiased;
height: 100%;
}
I'm seeking guidance on identifying the root cause of this problem and finding a solution to ensure consistent font display across different browsers. Can you offer any advice?