That is the <br class="clearBoth" /> after the logo wrapper that is taking up space. You can add to your stylesheet
#logoWrapper+br.clearBoth {display: none}
This will not be effective in IE6 because it doesn't understand adjacent selectors in CSS.
You can edit /includes/templates/your_template/common/tpl_header.php to change that
<br class="clearBoth" />
to
<div class="clearBoth"></div>





