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

style sheet

1 Answer 40 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
appdev
Top achievements
Rank 1
appdev asked on 08 Jul 2009, 03:24 AM
i'm trying to apply css class to tabstrip but it didn't do anything
i got a form decorate skin set to forest,  and tabstrip set to forest. as default it set background color of tab to green and forecolor to black. i want to change the text to white so i tried
<style type="text/css">
    .SelectedTab
    {
        color:#ffffff;
    }
</style>

and then at the telerikpanelitem i apply cssselectedtab to that but it didnt work at all. can you tell me why.i also found css file in telerik folder in program file and included that in the project but that didn't work either can you tell me what i need to do ? thank you.

1 Answer, 1 is accepted

Sort by
0
Atanas Korchev
Telerik team
answered on 10 Jul 2009, 04:04 PM
Hi Duy,

You can try applying the !important modifier so the color setting overrides the one from the skin:
<style type="text/css">
    .SelectedTab
    {
        color:#ffffff !important;
    }
</style>


All the best,
Albert
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
TabStrip
Asked by
appdev
Top achievements
Rank 1
Answers by
Atanas Korchev
Telerik team
Share this question
or