Whether you use form.custom or not all elements are CSS friendly. You
can change all attribute using CSS or
jQuery('#name').css('attribute','value');On Jun 15, 10:42 am, selecta <[email protected]> wrote: > > 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; > > > > > > > > }

