The white space under your header is caused by this section of code in your css:
Code:
#logo {
text-align: center;
}
Change to:
Code:
#logo {
float: left;
}
That should do the trick.
I also saw your tagline in your css. See all that other stuff in there? Right now it looks like:
Code:
#tagline {
display: none;
color:#000000;
font-size: 2em;
text-align : center;
vertical-align: middle;
}
It needs to look like:
Code:
#tagline {
display: none;
}
Anything that's unnecessary just slows your sites download time. The browser has to read everything........even if it's not displayed.
Hope this helps.