
Originally Posted by
rousseau
I had a recent similar experience. I found that the problem was in the CSS files. To correct it I just changed the top margin so that the breadcrumbs started lower on the page. In my case they were up behind the header. To locate the file:
/includes/templates/classic/css/stylesheet.css
On the stylesheet.css file, this is the definition you need to adjust:
#navBreadCrumb {
margin: 3em;
}
3em seemed to be enough to bring the bread crumbs down to where I wanted them, you can try a different amount if you like.
I hope this might help.