Breadcrumb navigation into "Whitespace" theme tagline

Permalink
Hiya,
I am trying to insert a breadcrumb navigation line into the tagline of the "Whitespace" theme. I've found the tagline to be in header.php and is currently:
<div id="tagline">
        <div id="taglineleft">
      <p><?php  echo $c->getCollectionName() ?></p>
        </div>
   <div id="taglineright">
      <p><?php  echo $c->getCollectionDescription() ?></p>
   </div>
</div>

I've gone through the forums and found this code snippet:
<?php
    $breadcrumbs = BlockType::getByHandle('autonav');
    $breadcrumb->controller->orderBy = 'display_asc';
    $breadcrumb->controller->displayPages = 'top'; 
    $breadcrumb->controller->displaySubPages = 'relevant_breadcrumb'; 
    $breadcrumb->controller->displaySubPageLevels = 'all';
    $breadcrumb->render('templates/breadcrumb');
?>

But not sure where to put it.

So I'm wondering, how do I need to change the header.php so that it displays a breadcrumb rather than just the current page name?

TIA

Edit May 17th - Is this question too stupid to get an answer? Anyone? Please?

anchoredbutterfly
 
anchoredbutterfly replied on at Permalink Best Answer Reply
anchoredbutterfly
In case anyone needs this help - it was answered here: http://www.concrete5.org/marketplace/themes/whitespace/forums/tagli...
And works like a charm.