I've been experimenting with various methods to extend the white background around the title to cover the rest of the content. I've tried using overflow, clear, min-height, max-height, and even the '*' selector but nothing seems to work.
<html>
<head>
<title>Ventura County CEC</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="global.css">
<style type="text/css">
html
{
height: 100%;
}
body
{
min-height: 100%;
}
#courseContainer
{
width: 960px;
background-color: #ffffff;
position: relative;
margin: 0 auto;
height: *;
/*min-height: 1610px;*/
padding-left: 15px;
padding-right: 15px;
}
#courses
{
position: absolute;
top: 221px;
height: *;
width: 960px;
border: 1px #cccccc dotted;
border-radius: 4px;
/*height: -moz-calc(* + 3px);
height: -webkit-calc(* + 3px);
height: -o-calc(* + 3px);
height: calc(* + 3px);*/
padding-bottom: 3px;
background: #ffffff;
}
/*#superCourses
{
background: #ffffff;
width: 960px;
height: *;
}*/
.course
{
position: relative;
height: 120px;
width: 952px;
margin-top: 3px;
margin-left: 3px;
border: 1px #cccccc dotted;
border-radius: 4px;
}
.course_title
{
position: absolute;
left: 5px;
width: 150px;
height: 120px;
line-height: 100px;
text-align: center;
}
.titleAlign
{
display: inline-block;
vertical-align: middle;
line-height: normal;
}
.course_description
{
position: absolute;
left: 150px;
top: 10px;
bottom: 10px;
width: 340px;
height: 100px;
overflow: auto;
z-index: 5;
}
.course_pics
{
position: absolute;
left: 450px;
height: 110px;
width: 100px;
margin-top: 5px;
}
.picture
{
position: absolute;
height: 110px;
width: 250px;
}
.course_ment_loc
{
position: absolute;
right: 5px;
top: 10px;
width: 200px;
text-align: center;
vertical-align: middle;
height: 110px;
}
.teacher
{
top: 0px;
}
.school
{
position: absolute;
bottom: 0px;
}
</style>
</head>
<body>
<div id="courseContainer">
<?php include 'title.php';?>
<div id="superCourses">
<div id="courses">
<div id="list">
<?php include 'CECCourses/courseTemplate.php';?>
<?php include 'CECCourses/courseTemplate.php';?>
<?php include 'CECCourses/courseTemplate.php';?>
<?php include 'CECCourses/courseTemplate.php';?>
<?php include 'CECCourses/courseTemplate.php';?>
<?php include 'CECCourses/courseTemplate.php';?>
<?php include 'CECCourses/courseTemplate.php';?>
<?php include 'CECCourses/courseTemplate.php';?>
<?php include 'CECCourses/courseTemplate.php';?>
<?php include 'CECCourses/courseTemplate.php';?>
<?php include 'CECCourses/courseTemplate.php';?>
<?php include 'CECCourses/courseTemplate.php';?>
</div>
</div>
</div>
</div>
</body>