Hey,

Not sure if this was on purpose but in the page.tpl.php file looks like this

  <div id="bottom-bar">
    <?php if ($page['footer_primary'] || $logo): ?>
      <div id="footer-primary">
        <?php print render($page['footer_primary'])?>
          <div id="logo">
            <a href="<?php print $front_page; ?>" title="<?php print check_plain($site_name); ?>" rel="home">
              <img src="<?php print $logo; ?>" alt="<?php print check_plain($site_name); ?>" />
            </a>
          </div> <!-- logo -->
        <?php endif; ?>
      </div> <!-- footer-primary -->

You're ending the div outside of the if statement, so if that if statement doesn't ring true, you're closing a div that doesn't exist. Not sure if this is for a reason, or just an oversight. Should be this,

  <div id="bottom-bar">
    <?php if ($page['footer_primary'] || $logo): ?>
      <div id="footer-primary">
        <?php print render($page['footer_primary'])?>
          <div id="logo">
            <a href="<?php print $front_page; ?>" title="<?php print check_plain($site_name); ?>" rel="home">
              <img src="<?php print $logo; ?>" alt="<?php print check_plain($site_name); ?>" />
            </a>
          </div> <!-- logo -->
        </div> <!-- footer-primary -->
      <?php endif; ?>

Comments

ishmael-sanchez’s picture

Assigned: Unassigned » ishmael-sanchez
Status: Active » Needs work
ishmael-sanchez’s picture

Status: Needs work » Fixed

The code has been fixed in dev for the time being, see http://drupalcode.org/project/earthish.git/commit/e2dfd52. I will be releasing a 7.x-1.1 soon which will encompass some bug fixes and new features.

Status: Fixed » Closed (fixed)

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

ishmael-sanchez’s picture

Status: Closed (fixed) » Needs work
ishmael-sanchez’s picture

Status: Needs work » Fixed

New release with fix pushed out http://drupal.org/node/1692308.

ishmael-sanchez’s picture

Status: Fixed » Closed (fixed)

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