+1  A: 

They're all percentage widths, so set the col1 div to a fixed width and this should give you what you want.

/* width center column content */
.threecol .col1 
{
  width:400px; 
  margin-right:50px; /*or percentage eqivalent*/
left:101.5%;
/*background:#fff004;*/
}

Tried in firebug, works fine :)

Kyle Sevenoaks
ok, I will try that
Richard
that actually worked, thanks. Except the text overflow fails with this, but I will try to work that out
Richard
Glad it worked for you.
Kyle Sevenoaks