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

change color of the tabs

2 Answers 106 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
jaws1021
Top achievements
Rank 1
jaws1021 asked on 20 Feb 2009, 02:42 AM
when my tabs are disabled it is text color is grey, I want those different color instead of faded grey, how can I do that?

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 20 Feb 2009, 10:47 AM
Hello,

You can try out the following code to set the desired color for the disabled tab for a particular skin:
css:
.RadTabStrip_SkinName .rtsDisabled .rtsIn  /*Replace SkinName with the skin you are using */
        {             
            color: black !important; 
            cursor: default; 
        } 

Thanks
Princy.
0
jaws1021
Top achievements
Rank 1
answered on 20 Feb 2009, 07:09 PM
I got this for the css under the classic red 

.RadTabStrip_ClassicRed

 

li a.disabled,

 

.RadTabStrip_ClassicRed

 

li a.disabled .wrap,

 

.RadTabStrip_ClassicRed

 

li a.disabled .innerWrap

 

{

 

cursor: default;

 

 

text-decoration: none;

 

 

color: black !important;

 

}

not rtsDisabled .rtsIn 
so I commented out code above and just put your code in and didnt work..

Tags
TabStrip
Asked by
jaws1021
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
jaws1021
Top achievements
Rank 1
Share this question
or