Change:
div.thumbs65 {
float:left;
width: 99.9%;
margin-top: 0;
margin-right: 0;
margin-bottom: 10px;
margin-left: 0;
}
to
div.thumbs65 {
clear:both;
width: 99.9%;
margin-top: 0;
margin-right: 0;
margin-bottom: 10px;
margin-left: 0;
}
and :
#innercontentwrap {
width:99.9%;
float:left;
}
to
#innercontentwrap {
width:500px;
float:left;
}
*500px is the first number I tried, play around with it to see what the max it can take is*
That fixes it in IE6, IE5.5 and IE5.01 on PC - and still looks OK FF, but can't test on Mac.
Matt