This is what I'm currently using to style the RadTabStrip
/*styles the active tab*/
.RadTabStrip_MetroTouch .rtsLevel1 .rtsSelected, .RadTabStrop_MetroTouch .rtsLevel1 .rtsSelected:hover {
background-color: #476794 !important; /* dark blue */
color: #FAE9B4 !important; /* gold */
}
/*styles the line below the tab*/
.RadTabStrip_MetroTouch .rtsLevel1 {
border-bottom-color: #476794 !important; /* dark blue */
}
The top style gives the selected tab fore and back color, the second style works on the line that's just below the tabs.
These overrides are safe to drop into any page or site stylesheet and will immediately update the control’s appearance without touching the markup.
