Re: How To Customize Font of Header in Child Theme
@elia.lombardi
To customize the header headline, add the following to your child-theme’s style.css file and adjust to taste:
`#header h1 a {
font-family:Arial,Helvetica,sans-serif;
font-size:48px;
font-weight:bold;
font-style:italic;
color:#555555;
}`
For help with css, a good place to start is here:
http://www.w3schools.com/css/default.asp
To help identify what you what to customize, install the Firebug addon in Firefox:
http://getfirebug.com/
Hope this helps!