I have looked at various topics but none of them have solved my problem.
I have set up a child theme and added this to my Theme Options>CSS:
@font-face {
font-family: 'Bellfort-Light';
src:url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_A_0.eot');
src:url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_A_0.eot?#iefix') format('embedded-opentype'),
url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_A_0.woff2') format('woff2'),
url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_A_0.woff') format('woff'),
url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_A_0.ttf') format('truetype');
}
@font-face {
font-family: 'Bellfort-Bold';
src:url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_7_0.eot');
src:url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_7_0.eot?#iefix') format('embedded-opentype'),
url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_7_0.woff2') format('woff2'),
url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_7_0.woff') format('woff'),
url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_7_0.ttf') format('truetype');
}
@font-face {
font-family: 'BellfortRough-Bold';
src:url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_15_0.eot');
src:url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_15_0.eot?#iefix') format('embedded-opentype'),
url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_15_0.woff2') format('woff2'),
url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_15_0.woff') format('woff'),
url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_15_0.ttf') format('truetype');
}
@font-face {
font-family: 'BellfortRoughDemo';
src:url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_16_0.eot');
src:url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_16_0.eot?#iefix') format('embedded-opentype'),
url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_16_0.woff2') format('woff2'),
url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_16_0.woff') format('woff'),
url('http://theshow608.flywheelsites.com/wp-content/themes/x-child/fonts/378321_16_0.ttf') format('truetype');
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a, blockquote {
font-family: 'BellfortRoughDemo', Fallback, sans-serif !important;
}
body {
font-family: 'Bellfort-Light', Fallback, sans-serif;
}
The font works as expected in Safari and Chrome but in Firefox and iOS it displays as sans-serif.
I know I don’t have the .svg file (MyFonts didn’t provide one) but I am using the latest iOS Safari so I don’t need a legacy format.
What am I missing?
Thanks,
Don