
Originally Posted by
helpme
My site looks fine in IE but in Firefox all of my content is set completely off the page to the right. The only thing that shows on without scrolling is the header and the logo. Any ideas?
It looks like perhaps you recently updated the template, but didn't update your css with the new updates. You have the clearfix tags in the html of the site, but you don't have the clearfix css in the stylesheet.
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 */
But you also have an error in your html. Your headerWrapper div is closing too early. Open up includes/templates/YOUR_TEMPLATE/common/tpl_header.php, and remove the </div> that is right before this:
Code:
<div class="clearBoth"></div>
<!--eof-navigation display-->
and move it to the end of the file. I think that will fix the issue.
Bookmarks