Is it possible to use any desired font in H1-H6 headings in a WP blog (v. 2.6.3), or some limited list of available fonts exist? I'd like to have something easy readable for a post title (not like Times New Roman). Like Arial, but something obviously different, since I have Arial in H2-H6 headings already. Any tip? http://www.healthhype.com What is the font in my first sig link?
You can use all the headers. You can predefine their look and size in your theme CSS file. As for the font of the link it is Verdana.
The h1 font in the sig link is Tahoma,Arial,Verdana. You can use any font you desire, just limited to what other people will have and always define the fallbacks as one of the primary 5 font-familys (serif,fantasy, monospace, sans-serif,cursive) something like h1 { font-family: Garamond,georgia,arial; } Here's more about the fonts with their respective classification: http://www.w3.org/TR/CSS2/fonts.html#generic-font-families
Hi For your WordPress blog you can use in your XHTML CSS fonts like: georgia, times, arial, helvetica, arial rounded and even stockwell
Put the fonts in the order you wish to have them displayed. If the user does not have the font it goes to the next one. In this case you would want arial listed first in your list.
It's ordered by preference, so go from specific to general. First I want garamond, if they don't have that give me georgia and if all else fails its back to arial. Course the last part should be one of the 5. so in your case h1{ font-family: "MS Trebuchet",Tahoma,verdana,sans-serif ; }