Hi, Daniel. It looks like you are using a couple of different CSS plugins. In one of them (is it Custom CSS Manager?), you have this:
}
.main_menu li a{
color:#ff0099 !important;
font-weight:bold;
}
That right brace at the very beginning may cause you some problems.
Where in CSS can I change fonts for the header? And what is the code?
Are you interested in changing the font family, the color, the style? Here is a rule that you can use that has the current values in effect for the site title (Life Changing Insights):
#site-title a {
color: #000;
font-weight: bold;
text-decoration: none;
font-family: aerial;
font-style: italic;
float: left;
font-size: 40px;
}
Just copy this rule to the end of your Custom CSS plugin’s field and change the values to whichever you choose. By the way, there is no font family called “aerial.” The correct spelling would be “Arial.” If you are unsure of what the different properties are, there’s a CSS reference here.