My breadcrumbs are shown after the main menu instead of below the menu as shown in the attached photos. If I have a block enabled on the right side bar, then the breadcrumb falls in the right place. I don't have blocks in all pages, so I want the breadcrumbs show in the right place whether a block is enabled or not. Please help!

Issue fork business-2144815

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

cmwelding’s picture

Update: Apparently the problem happens only on Chrome. It looks OK in internet explorer.

tibezh’s picture

Hi @cmwelding!
Maybe you edit the css file of theme.
Can you provide an example (link to site or archive with theme?)

tibezh’s picture

Status: Active » Closed (cannot reproduce)

@cmwelding, please, open the issue if you have a problem.

cmwelding’s picture

Updated the site with the 7.x 1.11 update but still same problem. Fixed it by adding <div class="clear"></div> in page.tpl.php as follows:

<div id="main">
    <section id="post-content" role="main"><div class="clear"></div>
    <?php if (theme_get_setting('breadcrumbs')): ?><div id="breadcrumbs"><?php if ($breadcrumb): print $breadcrumb; endif;?></div><?php endif; ?>
    <?php print $messages; ?>
tibezh’s picture

Version: 7.x-1.10 » 7.x-1.11
Assigned: Unassigned » tibezh
Status: Closed (cannot reproduce) » Needs work

  • Commit c0e3819 on 7.x-1.x by tibezh:
    Issue #2144815 by cmwelding: Breadcrumb out of place. Added div with...
tibezh’s picture

Status: Needs work » Reviewed & tested by the community

Hi @cmwelding, thanx for response. Now I added div with "clear" class.
Coming soon a new version of theme (7.12).

kunal_sahu made their first commit to this issue’s fork.