Log into your Dashboard and click the Editor link under the Appearance section on the left hand side of the screen. Once that pages loads, click the style.css link on the right hand side of the screen.
NOTE: Copy all of the code in this file and paste it somewhere else. This way if something gets screwed up you can revert back to the default code.
When you are ready, scroll down a little in the style.css code and look for the following block of text
#header h1 {
margin: 0px;
padding: 0px;
float: left;
width: 100%;
font-size: 28px;
color: #000000;
line-height: 30px;
}
#header p {
margin: 0px;
padding: 0px;
float: left;
width: 100%;
color: #666666;
}
#header a {
color: #6E2828;
text-decoration: none;
}
#header a:hover {
color: #000000;
text-decoration: none;
}
To change the color of the Emarketing Revealed text you can modify the following piece of code
#header a {
color: #6E2828; <-- Change the color here
text-decoration: none;
}
To change the font that is used you need to add an extra line of code
#header h1 {
margin: 0px;
padding: 0px;
float: left;
width: 100%;
font-size: 28px;
color: #000000;
line-height: 30px;
font-family: Times New Roman;
}
That covers the headline part. For the tagline color the piece of code you need to modify is
#header p {
margin: 0px;
padding: 0px;
float: left;
width: 100%;
color: #666666; <-- Change the color here
}
And to change the font for the tagline you need to add the extra piece of code
#header p {
margin: 0px;
padding: 0px;
float: left;
width: 100%;
color: #666666;
font-family: Times New Roman
}