drab0436
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: @font-face not working? Not doing it correctly?I’ve got basically the same issue…i think. Here’s the coding for my fonts:
/* =Fonts
————————————————————– */
@font-face {
font-family: ‘Pacifico’;
src: url(Fonts/’Pacifico.eot’);
src: url(‘Pacifico-webfont.eot?#iefix’) format(’embedded-opentype’),
url(‘Pacifico-webfont.woff’) format(‘woff’),
url(‘Pacifico-webfont.ttf’) format(‘truetype’)
url(‘Pacifico-webfont.svg#LobsterTwo-Regular’) format(‘svg’);
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: ‘Lobster Two’;
src: url(Fonts/’Lobster Two.otf’);
src: url(‘Lobster Two-webfont.eot?#iefix’) format(’embedded-opentype’),
url(‘Lobster Two-webfont.woff’) format(‘woff’),
url(‘Lobster Two-webfont.ttf’) format(‘truetype’)
url(‘Lobster Two-webfont.svg#LobsterTwo-Regular’) format(‘svg’);
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: ‘Conv_SansitaOne’;
src: url(‘fonts/SansitaOne.eot’);
src: local(‘☺’), url(‘fonts/SansitaOne.woff’) format(‘woff’), url(‘fonts/SansitaOne.ttf’) format(‘truetype’), url(‘fonts/SansitaOne.svg’) format(‘svg’);
font-weight: normal;
font-style: normal;
}
body,
input,
textarea,
.page-title span,
.pingback a.url {
font-family: Lobster Two, Pacifico, SansitaOne, Cooper Black, Century Gothic, Helvetica, sans-serif;
}…so one for each of the 3 custom fonts, but NONE WORK in IE or SVG, only in Safari and the newest FF. Please Help!
Thanks!