death2all wrote: > I have the following layout: > http://www.d2all.org/css_test/1.html and I am trying > to convert it to use only css for the layout and > remove tables completelly. Up to now I have this: > http://www.d2all.org/css_test/2.html but the footer > gets mixed up with any of the left or right columns > that get too far down. Problem is that I want the > left, center and right box numbers to be completely > dynamic and the footer to be placed right after any of > them as seen in the first layout. > Any help appreciated. >
Your left and right columns are absolutely positioned, and this is just not compatible with a footer. This is because absolutely positioned blocks are removed from the flow of the document; thus, the footer doesn't know they exist. I suggest floating your left and right columns instead. There are several examples of this type of layout in the wiki: http://css-discuss.incutio.com/?page=ThreeColumnLayouts Zoe -- Zoe M. Gillenwater Design Services Manager UNC Highway Safety Research Center http://www.hsrc.unc.edu ______________________________________________________________________ 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/
