Hi,
Where can I change the fonts of this theme? I could not find any guides for how to do this.
1 answer
To use custom font on your website you have a couple of options . . . .
- Use open source and free online fonts like google fonts and font squirrel (search free web font on Google).
2. Embed your local font in your website. here is how:
You ll need to convert your font to diffrent formats like: .eot, .svg, .ttf, .woff as diffrent browsers support diffrent formats. http://screencast.com/t/0KV17zkSri than add those fonts in your css like this:http://screencast.com/t/ypgKHV7lSm now use font like this: http://screencast.com/t/NheSnxPCE1SN
There are several services available online that converts a given format to all other required like: http://www.fontsquirrel.com/tools/webfont-generator.
Then just include the css and now you can use it in your css like this, on any element you want.
Code:
html { font-family: "eurostile", OtherFallbackFont; }
or for just headers:
Code:
h1 { font-family: "eurostile", OtherFallbackFont; }
Hope That Helps