Hi,
I am testing with the control example of the Breadcrumb in version 2.3a.
It seems the style element CMSBreadCrumbsLink does not work.
In the aspx I use the following styles:
.CMSBreadCrumbsCurrentItem
{
color:red;
font-weight: normal;
}
.CMSBreadCrumbsLink
{
color:yellow;
font-weight: bold;
text-decoration: none;
}
Nothing seems to happen with the element CMSBreadCrumbsLink
When I add a style for the hover it does change when hovering over the link:
.CMSBreadCrumbsCurrentItem:hover
{
color:yellow;
font-weight: bold;
text-decoration: none;
}
What is wrong in my example?