Tabstrip titles are default red how to change their color
1 Answer, 1 is accepted
0
Hristian Stefanov
Telerik team
answered on 15 Nov 2022, 04:52 PM
Hi Ayush,
The easiest way to customize the Tabstrip titles is to apply a custom "color" CSS style to the title HTML elements.
I have prepared an example for you below. Additionally, the "Class" parameter helps in specifying the desired component instance.
<style>.my-tabstrip.k-tabstrip-items-wrapper.k-item,
.my-tabstrip.k-tabstrip-items-wrapper.k-item:hover {
color: lawngreen;
}
</style><TelerikTabStripClass="my-tabstrip"><TabStripTabTitle="First">
First tab content.
</TabStripTab><TabStripTabTitle="Second"Disabled="true">
Second tab content. This tab is disabled and you cannot select it.
</TabStripTab><TabStripTabTitle="Third">
Third tab content.
</TabStripTab></TelerikTabStrip>