I am having a headache getting iOS 7/8 to render my fonts properly. It appears iOS does not know how to render the bold variant of Helvetica Neue Light (HelveticaNeue-Light/HelveticaNeue-Bold).
E.g. I have the following CSS selectors:
body {
font-family: "HelveticaNeue-Light";
}
h1 {
font-weight: bold;
}
h2 {
font-weight: 600;
}
And my markup:
<li>
<h1>A. Crimson Tide UK (Enabled Customer - UK Depot)</h1>
<h2>1-14</h2>
<h2>10:00 - 11:00</h2>
<p>0914 Desc</p>
</li>
And whenever I have a h1 tag, iOS seems to render Helvetica Neue Condensed Bold (HelveticaNeue-CondensedBold) - not Helvetica Neue Bold (HelveticaNeue-Bold).
Here is a screenshot of my webpage:
Why is it rendering the Helvetica Neue Condensed Bold and not Helvetica Bold - I have not set Condensed anywhere in my CSS!
If I set the h1 font-weight
to 900, it renders in Helvetica Neue, and it is slightly bold, but not the weighting I would like.
If somebody can shed some light on this it would be greatly appreciated.
Thank you in advanced.
font-family: "HelveticaNeue-Bold";
instead justbold
iosfonts.com – TonyMkenufont-family: "HelveticaNeue"
and explain why I can't use various font-weights to make the text lighter/bolder (as it seems to work if I setfont-weight
bolder, but not lighter). As it's the answer I need but I can't reward it an answer yet :) – keldar