I had the same problem with the Uvite template and there it can be changed with changing the following in the index.php file in your templates folder.
<?php if(!$tmpTools->isFrontPage()) : ?>
<div id="ja-current-content" class="clearfix">
<!-- BEGIN: PATHWAY -->
<?php if(!$tmpTools->isFrontPage()) : ?>
<div id="ja-pathway">
<jdoc:include type="module" name="breadcrumbs" />
</div>
<?php endif; ?>
<!-- END: PATHWAY -->
<jdoc:include type="component" />
</div>
<?php endif; ?>
To:
<div id="ja-current-content" class="clearfix">
<!-- BEGIN: PATHWAY -->
<?php if(!$tmpTools->isFrontPage()) : ?>
<div id="ja-pathway">
<jdoc:include type="module" name="breadcrumbs" />
</div>
<?php endif; ?>
<!-- END: PATHWAY -->
<jdoc:include type="component" />
</div>
I think the changes for this template should be quite the same, just make sure you backup first 🙂