View Single Post
Old 02-20-2014, 06:43 PM   #6
Tisha4870
Junior Member
Tisha4870 began at the beginning.
 
Tisha4870's Avatar
 
Posts: 8
Karma: 10
Join Date: Feb 2014
Device: iPhone 5S, iPad Air
@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;
}
Tisha4870 is offline   Reply With Quote