The content of the website is two-columned with the right being fixed and the left being liquid with min and max widths. I have that down, but now I'm having problems creating a liquid, 4-columned footer to go underneath. The way that I have it makes the columns look stepped like a staircase.
I need them all to line up correctly with equal amounts of space in between as the window gets stretched. The columns themselves are also of varying widths.
EDIT
I realized a mistake I made, which caused the columns to step, so now I can move on to figuring out how to space them out evenly in the footer. This is the CSS I have:
#footer .col1, #footer .col2, #footer .col3, #footer .col4{
float: left;
padding: 10px 0;
}
#footer .col1{
width: 75px;
}
#footer .col2{
width: 375px;
}
#footer .col3{
width: 325px;
}
#footer .col4{
width: 100px;
}
I used to have the widths as percentages, but it didn't evenly space them like I thought it would. Thanks for all your help!