Viewing 4 replies - 1 through 4 (of 4 total)
  • It depends…

    Do you have any CSS skills? Do you know about the concept of @font-face?

    Thread Starter Tylerr82

    (@tylerr82)

    I have some because understanding of css. I have made a few stylesheets, but would not consider myself an expert by any means. I know very little about font-face. My guess was that I would change it in the style sheet. Just not sure where, also if you have any suggestions on what type of font would look good in the title.

    Cool, so forget about the @font-face for a moment & try this first.

    The stylesheet we’re looking for is the style.css in your active theme folder (/Hunger_Always-1/). Once you get it, spot these lines:

    #header #blog_title {
    	font-size: 3em; /* Blog Title */
    	padding: 29px 200px 0px 345px;
    	text-align: left;
    }

    That is where you’ll add the fonts’s names you wish to display (& tweak the size of them). You can add 3 choices: if your visitors don’t have the first font their browser will look for the second one and so on. So the third font must be very common on most versions of Windows, Mac, Linux etc.

    Pretend you wish to use the Lucida font. The best way of doing it could be to add this line to the #blog_title‘s rules shown above:

    font-family: ‘Lucida Sans Unicode’, ‘Lucida Grande’, sans-serif;

    For more exemples of “safe” font’s choices, you can check this:
    http://www.webdesigndev.com/web-development/16-gorgeous-web-safe-fonts-to-use-with-css

    Good luck =)

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How do I change the font in the header?’ is closed to new replies.