I am currently working on the grid for … and i am having some problems with floating the menu and the image gallery... I haven't got it too work in IE6, but even in other browsers the last menu item or the last column of images will not float behind the first ones... The css is located at … What am I doing wrong?
You have a margin on the right hand side. For the box model the total width of the elements within the ul is the width of the <li>s plus the margins. The last image has a margin-right which on adding will exceed the width of the ul.
Increase the width of the ul to 95em and see it fix itself.
thanks for the comment nimbupani. One more question: Changing the width of the ul works in all browsers except for ie6 (of course). What would I have to do in order to get it too work there?