@Diap - Yup, I tried it in the body as well as inline styling on the <p> tags
@Hitch - All the fonts are embedded and @font-face styling applied (see below) and I've tried it with the font name capitalized and lowercase and added !important tags
@font-face {
font-family:Calibri;
font-weight:normal;
font-style:normal;
src:url('../Fonts/Calibri.ttf');
}
@font-face {
font-family:Calibri;
font-weight:normal;
font-style:italic;
src:url('../Fonts/Calibri Italic.ttf');
}
@font-face {
font-family:Calibri;
font-weight:bold;
font-style:normal;
src:url('../Fonts/Calibri Bold.ttf');
}
@font-face {
font-family:Calibri;
font-weight:bold;
font-style:italic;
src:url('../Fonts/Calibri Bold Italic.ttf');
}
p, h1, h2, h3, h4, h5 {
font-family:Calibri, sans-serif !important;
}
|