We are using Breadcrumb control whose items are dynamically populated depending on the node selected in kendo treeview on the left panel. when the breadcrumb is rendered, all the items in the breadcrumb are in pink color and i'm not able to change the font color. Any help here is greatly appreciated
Thanks
Georgi
Telerik team
commented on 01 Feb 2024, 10:47 AM
Hello Puri,
If I understand you correctly, you are currently using the Kendo UI for Angular BreadCrumb and are looking for an approach to change the font color of the component's items. Please, correct me if I misinterpreted the requirement.
One possible approach that would allow you to achieve the desired modification would be for the developer to utilize the .k-breadcrumb-link CSS selector and adjust the color property:
.k-breadcrumb-link{
color: green;
}
To better illustrate the suggested approach, I am sending you a StackBlitz demo that implements it: