You are closing your div tags too soon.
basically you have one table (although not opened) and 2 divs on it:
Code:
------------------
| |
| |
1 | 2 |
| |
-----------------
(more or less....) You open div for content 1 first, if you close that main div before you open div for content 2, then content 2 will be below content 1, which is what I am seeing on your page.
in a shortened example try to make it like this:
<div content1>
<div for stuff>
content here
</div for stuff>
<div for content 2>
<div and other contents>
</div and other contents>
</div content 2>
</div content 1>
Hope that makes sense....
Bookmarks