VirusMinus,
I made the changes you suggested with the CSS, but now have another alignment issue with the right section overlapping now into the left column near the bottom. I'm thinking it might be related to the strict DOCTYPE, but not sure how I need to change the doctype as you suggested. Could you spell that one out for me so I can award you the points?
Main Topics
Browse All Topics





by: VirusMinusPosted on 2007-08-01 at 07:32:15ID: 19609095
modify these bits of the CSS as follows:
style.css (line 55)
#main_body {
background:#002A5C; /*added this*/
overflow:hidden;
padding:0;
width:100%;
}
style.css (line 58)
#body_left {
background-color:#41709A;
float:left;
padding:14px 0pt 0pt;
width:215px;
/*removed display:block, height:100% and position:absolute as they are conflicting and not required*/
}
style.css (line 73)
#body_right {
background-color:#002A5C;
float:left;
margin:0pt 0pt 0pt 215px;
padding:0pt;
/*removed display:block, height:100%, width:100% and position:absolute as they are conflicting and not required*/
}
also use the strict DOCTYPE at the top of your page instead of the current transitional