This is a migrated thread and some comments may be shown as answers.

ComboBox fontsize=medium shows shadow

1 Answer 92 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Wenting
Top achievements
Rank 1
Wenting asked on 18 Jun 2012, 12:55 PM
hi
my code is very simple, I just change font size in combo box and it shows very weird line or shadow under combobox as in the screen shot. my telerik for ajax version is 2012.1.215.40

here is my code
<telerik:RadComboBox ID="YearComboBox" Runat="server"  Filter="StartsWith" Font-Size="Medium"
 Width="100px"  Height="150px"   DataTextField="Text" DataValueField="Value"
        DataSourceID="XmlDataSource1" >
</telerik:RadComboBox>
    <asp:XmlDataSource ID="XmlDataSource1" runat="server"
        DataFile="~/Common/year.xml"></asp:XmlDataSource>

This appears in both Chrome and IE9

Many Thanks!

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 19 Jun 2012, 05:23 AM
Hi,

Try overriding the default css as follows.

CSS:
<style type="text/css">
    .RadComboBox *
    {
      height: 19px !important;
    }
</style>

Hope this helps.

Thanks,
Princy.
Tags
ComboBox
Asked by
Wenting
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or