hi there,
i tried to customize the witdh of my columns.
did it that way:
.three-columns #primary {
    width: 690px;
}
.three-columns #secondary {
    width: 200px;
}
.three-columns #third {
    float: left;
    width: 240px;
}
my problem is that if i reduce the size of the third column and increase the size of the primary column like that:
.three-columns #primary {
    width: 730px;
}
.three-columns #secondary {
    width: 200px;
}
.three-columns #third {
    float: left;
    width: 200px;
}
the gap between primary and third column increases - the gap between primary and secon column decreases.
 how can i fix this in order to have same gap between the columns?