Tested 4.2.0, not working... But..
I changed some stylevar field i this code, working now..
Replace with this code on additional.css
PHP Code:
.bread_box {
margin-top: 2px;
overflow: hidden;
clear: both;
}
.breadcrumb {
position: relative;
font: 11px Arial,Calibri,Verdana,Geneva,sans-serif;
background: #f1f1f1 url(images/gradients/top-highlight.png) repeat-x
scroll left top;
border: #000000; /* this is the border color that's around the whole thing */
-moz-border-radius:{vb:stylevar border_radius};
-webkit-border-radius: {vb:stylevar border_radius};
border-radius: {vb:stylevar border_radius};
overflow: hidden;
}
.breadcrumb .crust {
display: block;
float: left;
position: relative;
}
.breadcrumb .crust:first-child a.crumb {
padding-left: 13px;
-moz-border-radius-topleft:{vb:stylevar border_radius};
-moz-border-radius-bottomleft:{vb:stylevar border_radius};
-webkit-border-top-left-radius: {vb:stylevar border_radius};
-webkit-border-bottom-left-radius: {vb:stylevar border_radius};
border-top-left-radius: {vb:stylevar border_radius};
border-bottom-left-radius: {vb:stylevar border_radius};
}
.breadcrumb .crust a.crumb, .breadcrumb .crust b.lastcrumb {
text-decoration: none;
background-color: #f1f1f1; /* this is the background color of the CRUMBS, ie: the links */
padding: 0 10px 0 23px;
border-bottom: 1px; /* this is the same as the border value higher up, this only shows if the last crumb causes it to overflow */
border-bottom-style:solid;
border-bottom-color:#c1c1c1;
margin-bottom: -1px;
outline: 0 none;
-moz-outline-style: 0 none;
display: block;
line-height: 22px;
_border-bottom: none;
color:#417394; /* this is the color of the links in the crumbs */
text-decoration:none;
}
.breadcrumb .crust b.lastcrumb {
background: transparent none;
color: #3e3e3e; /* this is the color of the last crumb, ie: the final destination */
font-weight: bold;
}
.breadcrumb .crust a.crumb, .breadcrumb .crust b.lastcrumb {
line-height: 22px;
}
.breadcrumb .crust .arrow {
border: 12px solid transparent;
border-right: 1px none black;
border-left: #c1c1c1; /* this is the _background_ color of the "arrow" */
border-left-width: 12px !important;
border-left-style: solid !important;
display: block;
position: absolute;
right: -12px;
top: -1px;
z-index: 50;
width: 0px;
height: 0px;
}
.breadcrumb .crust .arrow span {
border: 12px solid transparent;
border-right: 1px none black;
border-left-color: #f1f1f1; /* this is the border color of the "arrow" */
display: block;
position: absolute;
left: -13px;
top: -12px;
z-index: 51;
white-space: nowrap;
overflow: hidden;
text-indent: 9999px;
width: 0px;
height: 0px;
}
.breadcrumb .refresh:hover { background-position: 0px -16px; }
.breadcrumb .crust:last-child a.crumb { font-weight: bold; }
.breadcrumb .crust:hover a.crumb {
background-color:#e9e9e9; /* this is the background color of the crumb when it's hovered */
color: #417394; /* likewise, this is the color of the crumb's link when hovered */
text-decoration:none;
}
.breadcrumb .crust:hover .arrow span {
border-left-color:#e9e9e9; /* this is the color of the "arrow" when hovered. It should be identical to the `.breadcrumb .crust:hover a.crumb` background value */
}