02 Jun
PROBLEM: I need to find out how to expand the height of the header without ruining the alignment of the text in the nav bar.
CAUSE: I'm increasing the height of the header from 100px to 125px. I've changed the size of the #header-wrapper to 125px. When I add an appropriately sized logo (185 x 125) it knocks the text in the navigation bar to the right.
Using FF's Developer Tools, it appears that the header-wrapper somehow dips into the nav bar, but I can't see where that is defined in the CSS.
03 Jun
#1
Answered via e-mail, but to anyone else experiencing this problem, just add a bit of CSS to your stylesheet:
#site-logo img {
display: block;
}
or, if you prefer:
#site-logo img {
vertical-align: bottom;
}




