you have to make sure to use the clear:both;
, when you are using float
in CSS
your <div id="main_content">
shouldn't be floating.
only the sidebar should set with float:left
if you want a right sidebar you should make float:right
.
see this tutorial how to make a two column liquid design.
+---------------------------------------------+
+ HEADER (no float) +
+---------------------------------------------+
+ Sidebar float:left + content (no float) +
+---------------------------------------------+
+ footer (no float) +
+---------------------------------------------+
right now you page is like this
+---------------------------------------------+
+ HEADER (no float) +
+---------------------------------------------+
+ Sidebar float:left + content (float:right) +
+---------------------------------------------+
+ footer (no float) +
+---------------------------------------------+
which create your problem