I'm designing a website for a school project, and I'm having some trouble with IE7. Here's the site: http://caffeol.otherroaddesign.com/
It shows fine in FF and Opera, but in IE7 the sidebar doesn't work. I can't figure it out. This project is due tomorrow, so please help me. Thanks!
Here's the coding highlights:
<div id="content">
<div id="sidebar">
<!-- Bit o' content -->
</div>
<div id="main" class="with_sidebar">
<!-- Bit o' content -->
</div>
</div>
#content {
padding-top:100px;
}
#content #main {
}
#content #main.with_sidebar {
margin-right:220px;
}
#sidebar {
float:right;
width:200px;
}