css float - CSS floating not working with height set to auto -
so trying have leftcontent div floated left, rightcontent div floated left , position content div inbetween them. when adjusted height of album div actual pixel size instead of auto worked fine, height being auto doesn't float divs properly. to see current code doing can go http://www.robhorlacher.ca/images.php give at. html <? print "<div id=\"ccontainer\">"; $execute_statement = "select count(*) imagealbums"; $results = mysql_query($execute_statement) or die ('error executing sql statement!!!'); $entries = mysql_fetch_row($results); $rownumber = $entries[0]; $totalperpage = 3; $totalpages = ceil($rownumber / $totalperpage); if (isset($_get['currentpage']) && is_numeric($_get['currentpage'])) { $currentpage = (int) $_get['currentpage']; } else { $currentpage = 1; } if ($currentpage > $totalpages) { $current...