Hi all,
I have a combobox in the cell of a table. For some weird reason the combobox fill the whole area of the cell. I have set the cell's padding to 2px, but i dont really want the cell to be that large.
Is there any way to set the combobox height to some specific value?
My css is
and the asp is:
I have a combobox in the cell of a table. For some weird reason the combobox fill the whole area of the cell. I have set the cell's padding to 2px, but i dont really want the cell to be that large.
Is there any way to set the combobox height to some specific value?
My css is
| #searchFilter { | |
| background:url(../images/insideSearchBck.gif) no-repeat left top; | |
| width:282px; | |
| padding:0px; | |
| } | |
| #searchFilter h2 { | |
| color:#FFFFFF; | |
| } | |
| #searchFilter td { | |
| padding:2px 0 5px 15px; | |
| } | |
| #searchFilter th { | |
| padding:5px 0 0 15px; | |
| font-weight:bold; | |
| font-size:75%; | |
| } | |
| #searchFilter input.searchBtn { | |
| background:url(../images/insideSearchBtn.gif) no-repeat; | |
| width:282px; | |
| height:34px; | |
| border:none; | |
| } | |
| #searchFilter select { | |
| width:240px; | |
| } | |
| #searchFilter select.time { | |
| width:100px; | |
| } | |
| #searchFilter input { | |
| width:240px; | |
| } | |
| #searchFilter a { | |
| font-size:75%; | |
| font-weight:bold; | |
| color:#0097de; | |
| } |
and the asp is:
| <div id="searchFilter"> |
| <table cellpadding="0" cellspacing="0"> |
| <tr><td style="padding-top:10px;" colspan="2"><h2>Something</h2></td></tr> |
| <tr><th colspan="2">Something</th></tr> |
| <tr><td colspan="2"> |
| <telerik:RadComboBox ID="cmbNomoi" Runat="server" > |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </telerik:RadComboBox> |
| </td></tr> |
| ................ - Several cells with combobox follow - .............. |
| </table> |
| </div> |