What I meant was for you to add the vb conditional around the breadcrumb div element.
It seems though that my first solution was not well-thought out though. The problem is that the breadcrumb in its original location is hidden. So, we need to unhide it, but let it remain where it's supposed to be.
Try this...remove the edits you made at my request to your "navbar" template and add to your "additional.css" template the following selectors:
Code:
.breadcrumb {
position: relative !important;
}
.breadcrumb li a {
color: #CCCCCC !important;
}
.breadcrumb li a:hover {
color: #FFFFFF !important;
}
.breadcrumb li a img {
background: #FFFFFF !important;
}
Does this work?