Open style.css in your theme and find the following:
h1 {
font-family:tahoma, arial;
color:#EEEDE6;
font-size:3.31em;
/*
text-transform:uppercase;
*/
font-weight:normal;
line-height:1.01em;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
}
Add a line that reads display:none; so it looks like this:
h1 {
font-family:tahoma, arial;
color:#EEEDE6;
font-size:3.31em;
/*
text-transform:uppercase;
*/
font-weight:normal;
line-height:1.01em;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
display:none;
}
Then you can replace you header with a larger one, or set the current one to repeat by finding the following code:
.header {
height:125px;
margin:5px 0px 0px 0px;
background:url(images/nspLogo.jpg) left top no-repeat;
vertical-align:top;
background-color:#FFFFFF;
}
and change the no-repeat; to repeat-x; so it looks like this:
.header {
height:125px;
margin:5px 0px 0px 0px;
background:url(images/nspLogo.jpg) left top repeat-x;
vertical-align:top;
background-color:#FFFFFF;
}