Open the index.php file and find this codE:
<!-- BEGIN: PATHWAY -->
<div id="ja-pathway">
<strong>You are here :</strong><jdoc:include type="module" name="breadcrumbs" />
</div>
<!-- END: PATHWAY -->
cut it and paste it below this(around line 119):
<?php if ($hasSubnav) { ?>
<div id="ja-subnav" class="clearfix">
<?php $jamenu->genMenu (1,1); ?>
</div>
<?php } ?>
<!-- END: MAIN NAVIGATION -->
So it will look like this:
<?php if ($hasSubnav) { ?>
<div id="ja-subnav" class="clearfix">
<?php $jamenu->genMenu (1,1); ?>
</div>
<?php } ?>
<!-- END: MAIN NAVIGATION -->
<!-- BEGIN: PATHWAY -->
<div id="ja-pathway">
<strong>You are here :</strong><jdoc:include type="module" name="breadcrumbs" />
</div>
<!-- END: PATHWAY -->