You found a glitch in my template, THANKS

, however, your "solution" was just because of an error in your css, which caused IE to freak out, which caused the sideboxes to be hidden. FYI, in a stylesheet, you can't just change 0 to 1. 1 what? 1 px? 1 em? 1 yard? 1 mile? You have to tell it what the unit of measure is. And anyway it needs to be 0, in all reality.
BUT to fix your issue, open up includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php
and change these lines (approx line 137-143):
Code:
<!-- end left div -->
<div class="clearBoth"></div>
</div>
<!-- end float-wrap -->
<?php
}
?>
to this:
Code:
<!-- end left div -->
<?php
}
?>
<div class="clearBoth"></div>
</div>
<!-- end float-wrap -->
And once you do that, and change 1 back to 0, all should be well.