Hello, @Roshan_Abrew
You can use a little CSS to change the color of the link.
<pre><span><style>
#list-item-lf-Web {
color:blue;
}
</style></span></pre>
EDIT :::::::::::::
Here is another version:
The name of the tag is dependent on the title associated with the component!
(I think it’s new, well I never paid attention ;-))
In my example the title is “Mon site Web” so the tag name is [id = “list-item-lf-Mon site Web”]. This helps to differentiate the components.
It is therefore necessary to adjust the name of the tag according to the title!
<pre><span><style>
[id="list-item-lf-Mon site Web"] {
color:blue !important;
}
</style></span></pre>
There is a similar topic which corresponds to the same problem.