To center the header, find this code in your style.css:
#branding img {
border-bottom: 1px solid #000;
clear: both;
display: block;
}
and replace it with this code:
#branding img {
border-bottom: none;
clear: both;
display: block;
margin: 0 auto;
}
To run the black line across the entire white space, there are two parts of your CSS you need to modify.
FIRST find this code in your style.css file:
#wrapper {
background: #fff;
margin-top: 20px;
padding: 0 20px;
}
and replace it with this code:
#wrapper {
background: #fff;
margin-top: 20px;
padding: 0;
}
SECOND
#access {
background: #000;
display: block;
float: left;
margin: 0 auto;
width: 940px;
}
and replace it with this code:
#access {
background: #000;
display: block;
float: left;
margin: 0 auto;
width: 1020px;
}