Try this
In your or make a copy for your template of tpl_header.php and find and remove the <br class="clearBoth" /> as indicated
Code:
<!--bof-branding display-->
<div id="logoWrapper">
Other Code
<div id="taglineWrapper">
<div id="tagline"></div>
</div>
</div>
<br class="clearBoth" />
<!--eof-branding display-->
You can also mitigate this by finding this in your stylesheet.css file
Code:
#headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
margin: 0em;
padding: 0em;
}
Separate out the headerWraper and give it a bavkgroung color so you have something similar to this
Code:
#headerWrapper {
background-color: #000000;
margin: 0em;
padding: 0em;
}
#contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
margin: 0em;
padding: 0em;
}