> you can customize select / option tags layout with CSS
that is what i usually do
go with you mouse and rightclik on the element and select inspect
element (ff+firebug, chrom or opera)
now you can see the id of the element
in you css you can now write something like
#mytable_body{
    width: 790px;
    height: 50px;
}

you could also change the width of all form elements from the table
mytable with
input[id^='mytalbe_'] {
   width: 100px;
}

Reply via email to