Hello all,
Been trying with no success, but how do i get the @fpnt-face tag working in the Thematic Wordpress theme?
Thanks
Greeny
Hello all,
Been trying with no success, but how do i get the @fpnt-face tag working in the Thematic Wordpress theme?
Thanks
Greeny
Maybe a little more details on what you have done thus far. For example, from google fonts the following should work if added to your (childtheme) stylesheet:
@import url(http://fonts.googleapis.com/css?family=Patrick+Hand);
As far as I know google fonts is not the @font-face tag. Anyways....
I have downloaded from fontsquirrel FFTusjBold, with the code:
@font-face {
font-family: 'FFFTusjBold';
src: url('../fonts/FFF_Tusj-webfont.eot');
src: url('../fonts/FFF_Tusj-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/FFF_Tusj-webfont.woff') format('woff'),
url('../fonts/FFF_Tusj-webfont.ttf') format('truetype'),
url('../fonts/FFF_Tusj-webfont.svg#FFFTusjBold') format('svg');
font-weight: normal;
font-style: normal;
Do I add this to my childtheme style.css or typography.css or the default.css? Should I use @import? I want to use it for my horizontal navigation, do I call this font-family in my childtheme style sheet or typography stylsheet?
All help is appreciated. Thanks
Greeny
Add the code to your childtheme style.css (and don't forget the closing } ). And after that you need to specify where to use it, for example
.entry-title {
font-family: 'FFFTusjBold', serif;
}Thanks MiddleSister! Needed this :)
This topic has been closed to new replies.