saguaros
I had asked this question earlier but the solution provided did not work.
the solution provided was as below:
<div id="t3-mainbody" class="container t3-mainbody">
<div class="row">
<!-- MAIN CONTENT -->
<div class="col-xs-12">
<?php if ($this->countModules('navhelper')) : ?>
<div class="navhelper <?php $this->_c('navhelper') ?>">
<jdoc:include type="modules" name="<?php $this->_p('navhelper') ?>" style="raw" />
</div>
<?php endif ?>
<div id="t3-content" class="t3-content">
<jdoc:include type="component" />
</div>
</div>
<!-- //MAIN CONTENT -->
</div>
</div>
http://prntscr.com/kf3vrd
Then open this CSS file: root/templates/ja_shoe (your default template)/css/custom.css (Create this file if it doesn't exist) and add this code:
.has-masthead .t3-mainbody .t3-content {
margin-top: 0;
}
After making the modifications the Navhelper(i am listing the manufactures logos with links) appears at the bottom of masthead with breadcrumbs as well as Manufactures logo . Whereas i just need breadcrumbs to be displayed.
Thanks