I figured it out- I removed the br part of <br class="clearBoth" /> in line 68 of templates/all biz/common/tpl_header.php.
This is not a good solution as taking the br out makes the code invalid. It would be better to remove the
Code:
<br class="clearBoth  />
and replace it with
Code:
<div class="clearboth"></div>
Why did you want to remove this?