View Single Post
Old 27-10-2004, 23:16   #2 (permalink)
templeGreen
Registered User
 
Join Date: Oct 2004
Location: London, UK
Posts: 16
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

Last edited by templeGreen : 27-10-2004 at 23:26.
  Reply With Quote