My 2 column layout is looking good in IE7 and FF2. Just having problems in Internet Explorer 6. http://www.nobledirectory.com/phpld/ Thats the site. Also how can I make the 2 columns stretch right down to the footer without leaving a gap? Mike
To fix IE6 could try adjust div#rcol's width. The padding/margin/width is the usual culprit when it does that. Easy solution to the column length is to assign a white background color to div#wrap.
Follow this steps: 1). You don't need #lcol-box and #rcol-box. Remove '<DIV id=lcol-box>' and relative '</div>' 2). Similar remove Remove '<DIV id=rcol-box>' and relative '</div>' 3). Goto main.css and replace #wrap {background: #969964; margin: 0px auto; width: 980px; height: 100%} with #wrap { background-color:#FFFFFF; margin: 0px auto; width: 980px; } 4). replace #rcol {padding-left: 45px; float: left; width: 240px; padding-top: 59px; position: relative; background-color: #ffffff; text-align: left} with #rcol {padding-left: 35px; float: right; width: 240px; padding-top: 59px; position: relative; background-color: #ffffff; text-align: left} Done!!! Works in both IE and FF....