You didn't follow my suggestion. You have the logo as a foreground image covering the whole header navbar. Find or add these declarations in your stylesheet and edit them to look as shown:
Code:
#headerWrapper {
margin: 0em;
padding: 0em;
background-image: url(../images/logo.gif);
}
#logoWrapper{
background-color: transparent;
float: left;
height: 147px;
}
#logo {
display: none;
}
Separate #navMainWrapper into its own declaration and edit the background like this:
Code:
#navMainWrapper {
margin: 0em;
background-color: transparent;
padding: 0.5em 0.2em;
font-weight: bold;
color: #ffff00;
height: 2em;
}