How to remove breadcrumb from Drupal
Ajay on December 25th, 2007By default you will see a breadcrumb appearing just below the main menu.
To disable it search for breadcrumb class in the style.css in the themem folder which you have installed.
E.g. for aberdeen the style.css will be in themes/aberdeen folder
Replace following (Or something similar)
.breadcrumb {
margin: 0 0 1.3em 0;
}
by
.breadcrumb {display: none;}
and enjoy

Hi,
This one is nice but if i want to disable only menu that is disable
Ex : I have menu : About Us -> Item (disabled) -> Career so i want to display one About Us -> Career.
What can i do?
Thanks
[Reply]