or

<center> <div id="divloading" style="z-index: 9000;"> <table class="centertable" border="0" style="width: 400px;" cellpadding="0" cellspacing="0"> <tr> <td style="text-align: center;"> <center><telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" HorizontalAlign="Center" runat="server" Skin="Outlook" MinDisplayTime="1500" IsSticky="True" Style="position: absolute; top: 0; left: 0; height: 100%; width: 100%;" Transparency="20" > <img src="ajaxloadingpanel_images/Loading.gif" title="Processing..." /> </telerik:RadAjaxLoadingPanel> </center> </td> </tr> </table></div></center>
<telerik:RadComboBox ID="cmbCountry" runat="server" AllowCustomText="false" AutoPostBack="true" OnTextChanged="SelectCountryPrompts" TabIndex="1" Width="150" >
<Items>
<telerik:RadComboBoxItem runat="server" Text="Select Country" Value="Select" />
<telerik:RadComboBoxItem runat="server" Text="United States" Value="USA" />
<telerik:RadComboBoxItem runat="server" Text="Canada" Value="Canada" />
</Items>
</telerik:RadComboBox>
</asp:TableCell>
Which renders fine in IE. It does not matter what I change the width proprty to, the textbox is always extedns to the end of the screen in FireFox & Chrome. All other controls render fine. Any help would be appreciated. Thank you