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

Could we change RadDropDownList displaying style to MS style?

1 Answer 128 Views
DropDownList
This is a migrated thread and some comments may be shown as answers.
Alex
Top achievements
Rank 1
Alex asked on 29 May 2013, 01:48 AM
Could we change RadDropDownList displaying style to MS style? How to do that?

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 29 May 2013, 12:42 PM
Hi Alex,

Try overriding the default CSS as follows. Please have a look at the attached screenshot in which the first control is the Telerik RadDropDownList and the second one is the ASP DropDownList.

CSS:
<style type="text/css">
    .RadDropDownList_Default .rddlInner
    {
        border-color: #D4D4D4 !important;
        border-radius: 0px !important;
        background-image: none !important;
    }
    .rddlPopup_Default .rddlItemSelected
    {
        background: none repeat scroll 0 0 #3399FF !important;
    }
    .rddlPopup_Default .rddlItemHovered
    {
        background: none repeat scroll 0 0 #3399FF !important;
    }
    .RadDropDownList_Default .rddlInner
    {
        font-weight: 600 !important;
        color: black !important;
    }
</style>

Thanks,
Shinu.
Tags
DropDownList
Asked by
Alex
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or