2
hello mark ...
there's a visible problem with floating within ie .... but it's no css floating problem. your floats and unfloats are ok so far ...
within ie the pagewidth does not fit, theres is not enough place for the right block in that column so ie shows it next possible position below.
before changing of width will have effect ... there is a ..
<div align="center">
<div style="width:880px;">
div>
in source ... delete or uncomment
<div style="width:880px;">
div>
it sets inner width 20 px below what you wanted! and of course there is no need for that div!
second ... change ..
<div id="maincontainer3">
<div style="width:745px; float:left;">
to ..
<div id="maincontainer3">
<div style="width:715px; float:left;">
(don't forget to fit:
#leftfloat {
width: 715px;} within your cssfile !)
and you will see that floats are ok...
....................................
when you see that it is a problem of fitting width, you can try and play until your settings are like you want it to .. (take care of content width :: menu) within right block ...
cheers
michael