I have a problem with my custom font in Firefox, in all other browsers it works fine.
The problem is:
On the same page I have h2 and h3 - they are styled with the same fonts and the same way (other properties are a bit different), but for some reason FF loads h3 properly but doesn't for h2.
h2 and h3 have the same custom font(A), they both have :first-letter styled with custom font(B).
So, basically, h3 loads with both fonts, but h2 only with 1 font and ignores :first-letter. Any ideas on how I can fix this?
Thanks!
h2 {
display: block;
width: 300px;
height: 103px;
font-family: 'Gotham Book';
font-size: 1.6em;
background: url('images/title-bg.jpg') no-repeat;
text-align: center;
letter-spacing: 0.1em;
margin: 0 auto;
}
h2:first-letter {
font: 2.2em 'Edwardian Script ITC';
padding: 0 6px 0 0;
}
h3 {
display: block;
margin: 100px 40px 40px 40px;
font-family: 'Gotham Book';
font-size: 1.1em;
text-align: center;
letter-spacing: 0.1em;
border-bottom: dashed #2babcb;
border-top: dashed #2babcb;
border-width: 1px;
}
h3:first-letter {
font: 2.2em 'Edwardian Script ITC';
padding: 0 6px 0 0;
}