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

[Solved] Radcombobox Style and Update

1 Answer 210 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Stefan Hansen
Top achievements
Rank 1
Stefan Hansen asked on 09 Jul 2009, 07:22 AM
Hi!
How can I change for example the web20 skin. When i hover the small box it has a light blue color and the arrow on the right side is in the same color. Now i want to change these elements. When i hover the box,   i try to change the color to white and the arrow should be darkblue. But nothing happens. The color of the hovered items change. Here is my code:
<style type="text/css">  
           .RadComboBoxDropDown_Web20 .rcbScroll  
           {  
                overflow-x:hidden !important;  
           }  
           .RadComboBoxDropDown_Web20 .rcbHovered  
           {  
                background-color:#FF6600;  
           }      
           .RadComboBox_Web20 .rcbArrowCell,  
           .RadComboBox_Web20 .rcbFocused  
           {  
            background:#001359;  
           }       
 
         </style> 
I hope you can help me!
A second question is an update to a newer radcombobox version for free when I buyed a version for more than one year??

1 Answer, 1 is accepted

Sort by
0
Yana
Telerik team
answered on 13 Jul 2009, 12:20 PM
Hello Stefan,

Please use "!important" css rule in order to overwrite default styles of RadComboBox like this:

<style type="text/css">     
           .RadComboBoxDropDown_Web20 .rcbScroll     
           {     
                overflow-x:hidden !important;     
           }     
           .RadComboBoxDropDown_Web20 .rcbHovered     
           {     
                background-color:#FF6600 !important;     
           }         
           .RadComboBox_Web20 .rcbArrowCell,     
           .RadComboBox_Web20 .rcbFocused     
           {     
            background:#001359 !important;     
           }          
    
         </style>    
 


Greetings,
Yana
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
ComboBox
Asked by
Stefan Hansen
Top achievements
Rank 1
Answers by
Yana
Telerik team
Share this question
or