I don't mean to "complain", this is a simple, humble suggestion.
Would it be possible for the header of bbPress to be corrected to not make the logo link area as tall as it is? It overlaps the main links, and can kinda get in the way at times.
Right now, the main css file looks like:
#logo a { background: url(header-logo.png); display: block; height: 124px; text-decoration: none; text-indent: -9000px; width: 413px; }
Then the bbPress header for "here" adds in:
#logo a { background-image: url(http://mu.wordpress.org/mu-header-logo.png); width: 442px;}
Could this be changed to also reduce the height from 124px to ~ 110px?
Thanks. :)
I guess I should note that the logo would probably have to be moved to the h1, so it fully displays. :-\
Something like:
#logo { background: url(header-logo.png); display: block; height: 124px; width: 413px; }
#logo a { background: transparent; display: block; height: 110px; text-decoration: none; text-indent: -9000px; width: 413px;}
Or whatever.