Header text different after installation


Author Message
Lisa

Posted: 8/23/2009
Quote message 

I've had this happen with a few themes, but not all of them.

I choose the header text, but when it's exported and installed in Wordpress, I get a completely different, generic font in my header, often a different size.

I've absolutely no idea what it is I might be doing wrong! If someone could offer help, I'd sure appreciate it!

Actually, you can see what I'm talking about here: http://www.beginneracousticguitar.net. That's supposed to be Staccato. :-(
 
Garry

Posted: 8/23/2009
Quote message 

The font of your blog title is controlled by following styling rule in your style sheet:
h1
{
font-size:4em;
text-align:center;
}

h1, h2, h3
{
font-family:'Trebuchet MS','Lucida Grande',Verdana,Arial,Sans-Serif;
font-weight:bold;
}

You can change it manually to your requirements going style.css

While font of tag line is controlled by:

body {
color:#333333;
font-family:'Lucida Grande',Verdana,Arial,Sans-Serif;
font-size:62.5%;
text-align:center;
}

#headerimg .description {
font-size:1.2em;
text-align:center;
}