I'm having a few problems with font-face that seems to occur every time I use it to include fonts. The only way to fix it is (I'm using Chrome btw) to go to the page in IE and let it redownload the font locally. The domain is: http://chahlesmc.us/
The first image shows the content how it should be, the other images show my issue with the bug. Thanks in advance!
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 100;
src: url('./fonts/sourcesanspro-extralight-webfont.eot');
src: url('./fonts/sourcesanspro-extralight-webfont.eot?#iefix') format('embedded-opentype'),
url('./fonts/sourcesanspro-extralight-webfont.svg') format('svg'),
url('./fonts/sourcesanspro-extralight-webfont.woff') format('woff'),
url('./fonts/sourcesanspro-extralight-webfont.ttf') format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 200;
src: url('./fonts/sourcesanspro-light-webfont.eot');
src: url('./fonts/sourcesanspro-light-webfont.eot?#iefix') format('embedded-opentype'),
url('./fonts/sourcesanspro-light-webfont.svg') format('svg'),
url('./fonts/sourcesanspro-light-webfont.woff') format('woff'),
url('./fonts/sourcesanspro-light-webfont.ttf') format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 300;
src: url('./fonts/sourcesanspro-regular-webfont.eot');
src: url('./fonts/sourcesanspro-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('./fonts/sourcesanspro-regular-webfont.svg') format('svg'),
url('./fonts/sourcesanspro-regular-webfont.woff') format('woff'),
url('./fonts/sourcesanspro-regular-webfont.ttf') format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: url('./fonts/sourcesanspro-semibold-webfont.eot');
src: url('./fonts/sourcesanspro-semibold-webfont.eot?#iefix') format('embedded-opentype'),
url('./fonts/sourcesanspro-semibold-webfont.svg') format('svg'),
url('./fonts/sourcesanspro-semibold-webfont.woff') format('woff'),
url('./fonts/sourcesanspro-semibold-webfont.ttf') format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 500;
src: url('./fonts/sourcesanspro-bold-webfont.eot');
src: url('./fonts/sourcesanspro-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('./fonts/sourcesanspro-bold-webfont.svg') format('svg'),
url('./fonts/sourcesanspro-bold-webfont.woff') format('woff'),
url('./fonts/sourcesanspro-bold-webfont.ttf') format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 600;
src: url('./fonts/sourcesanspro-black-webfont.eot');
src: url('./fonts/sourcesanspro-black-webfont.eot?#iefix') format('embedded-opentype'),
url('./fonts/sourcesanspro-black-webfont.svg') format('svg'),
url('./fonts/sourcesanspro-black-webfont.woff') format('woff'),
url('./fonts/sourcesanspro-black-webfont.ttf') format('truetype');
}