Quote Originally Posted by Zinfandel View Post
Thank you jt,

The site's up.
Let me know if you can't get in.
IE may not like that there's no clearing after your logo section.

I have a new way of clearing divs.

Open up includes/templates/your_template/common/tpl_header.php


change:

Code:
<div id="logoWrapper">

to

Code:
<div id="logoWrapper" class="clearfix">
add this to your stylesheet:

Code:
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
Hopefully that was the problem.