Hi, still pretty new to web design. Have built this site but am having problems with IE 5 - 6. The CSS is all over the place? The main problem is the content text dropping down.
Doubled-float margin bug - you're triggering it by floating the divs and then applying a margin to that div that's going in the same direction as the float -ie. float: right with a right margin and vice-versa for the left.
To fix it you need to use conditional comments to call a separate CSS file that contains ONLY the 'fixes' needed to make IE work properly.
What you need to stop this bug is to add display:inline for those divs you have floated and have applied the margin to.