I like this theme but I think this theme does not show breadcrumb. Or did I do something wrong?
I'm using D7.17
Thanks

Comments

coolman7’s picture

I noticed that breadcrumb is displayed but at the bottom of the page. Is it possible to show it at the top of the content?

themebrain’s picture

Hi Coolman,

The breadcrumb in this theme is the small line at the bottom. We can move it to any place by move this group in page.tpl.php

  <?php if ($breadcrumb || $back_to_top_display): ?>
    <!-- BREADCRUMB -->
    <div id="breadcrumb-wrapper" class="wrapper">
      <div class="container <?php print $grid;?>">
          <div class="grid-inner clearfix">
          <?php if ($breadcrumb):?>
            <?php print $breadcrumb; ?>
          <?php endif; ?>

          <?php if ($back_to_top_display): ?>
            <a title="<?php print t('Top')?>" class="btn-btt" href="#Top"><?php print t('Top')?></a>
          <?php endif; ?>
          </div>
      </div>
    </div>
    <!-- //BREADCRUMB -->
  <?php endif; ?>

It also contains the back to top button. Please split it carefully.

Regards,
ThemeBrain Team

themebrain’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.