Design and CSS styles
Version 2.x > Design and CSS styles > CMSBreadCrumbsLink not working? View modes: 
User avatar
Member
Member
Marco - 1/6/2008 12:56:46 PM
   
CMSBreadCrumbsLink not working?
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?