Mik F wrote: > getting a bit of 'code blindness' trying to resolve something, > coupled with the fact that I can't remembr which bits I've already > attempted to tweak.
Comes as no surprise, as styles overrides - and sometimes duplicate - other styles everywhere. I can't make it work either - unless I delete most of your styles first. > two links should show the obvious problem; can anyone point out the > obvious to me? > http://www.gallerykitchendesign.co.uk/dev/index.html > http://www.gallerykitchendesign.co.uk/dev/index2.html Problem: The use of 'absolute positioning' for large parts of complex pages is destined to fail. 'AP' gives you a number of independent containers, with little or no control over how containers interact and adjust to each other. Note especially that 'float' and 'AP' won't work together on the same element, as 'AP' will always win and 'float' is ignored. You can't make clear work below 'AP'-elements either. Solution: Start all over again with clean stylesheets, and avoid the use of 'absolute positioning' for anything but very small pieces - and only when all major parts of your layout are rendering _together_ as you want them to. You can probably use the same source-code, but validate it first and clean up those few errors found in there. regards Georg -- http://www.gunlaug.no ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
