Edit: Nevermind, apparently this moderator was in the vB5 forum area and NOT paying attention

. I do not know of a way to do this in vB5 although I found something
here that may lead you in the right direction.
IF you had vB4, for reference it would be this;
Create a new plugin:
Product: vBulletin
Hook Location: parse_templates
Title: Hide breadcrumbs on CMS
Execution Order: 5
PHP Code:
PHP Code:
if (STYLEID == 1) {
if (THIS_SCRIPT == 'vbcms') {
$cssfix = '<style type="text/css">
#breadcrumb, .breadcrumb {
display:none !important;
}
</style>';
$template_hook[headinclude_bottom_css] .= $cssfix;
}
}
Change the 1 in the STYLEID == 1 to whatever style this is being used in OR remove it altogether to use in all styles, using the code below instead it will remove breadcrumbs on all styles from CMS yet it will not modify mobile at all:
PHP Code:
if (!IS_MOBILE_STYLE) {
if (THIS_SCRIPT == 'vbcms') {
$cssfix = '<style type="text/css">
#breadcrumb, .breadcrumb {
display:none !important;
}
</style>';
$template_hook[headinclude_bottom_css] .= $cssfix;
}
}
Better to include this another way as <style type="text/css"> is not "prim and proper" but it will do the trick, the other way would be to make aplugin to generate a new css template then simply hook into the template and ensure it overwrites anything i.e. new css overwrites old css and no messy <style type="text/css"> to deal with but the above will work just fine.
Where did I find this info? How do I know to do these things? Can you learn? ... SURE!
Check this out