This looks to be an older version and as you did not supply the version as asked I can only guess...
the file includes/templates/template_default/common/tpl_main_page.php
contains the breadcrumb code which you will have to alter to contain your if's & eleses to attain the listing that you want.
Yours currently contains this:
Code:
<!-- bof breadcrumb -->
<div id="navBreadCrumb">Page Title</div>
<!-- eof breadcrumb -->
The default code is:
Code:
<!-- bof breadcrumb -->
<?php if (DEFINE_BREADCRUMB_STATUS == '1' || (DEFINE_BREADCRUMB_STATUS == '2' && !$this_is_home_page) ) { ?>
<div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
<?php } ?>
<!-- eof breadcrumb -->