I would obtain a 3 column footer with fixed width left and right column and the central fill the remaining space:
.
.
.
|[LEFT]<------central------>[RIGHT]|
Now I'm using this code, but the central column has fixed width :(
.left
{
float:left;
width: 100px;
}
.central
{
float:left;
width: {xxx}px
}
.right
{
float:right;
width: 100px;
}