The theme does not seem to pickup the footer message assinged in >>Site Configuration >> Site Administration. Even though a footer message is present, it continues to display only a Drupal logo.

I don't see anything being assigned to $footer in any of the files. Can you provide some direction?

Comments

SorinaGabriela’s picture

I have the same problem :(
Please, somebody help us!

jonathan_w’s picture

There are two ways you can fix this issue. The easiest way is to simply create a new block at admin>build>block. Add the same text that you have in your footer message to that block and then assign the new block to the Footer region.

The second way requires you to edit some of the theme files directly. First edit the page.tpl.php file. Change this (at line 151):

    <div id="footer" class="region grid-12">
      <?php print $footer; ?>
      <div id="levelten"><?php print l('Drupal Theme', 'http://www.leveltendesign.com/'); ?> by LevelTen Interactive</div>
    </div>

to this:

    <div id="footer" class="region grid-12">
      <?php print  $footer_message . $footer; ?>
      <div id="levelten"><?php print l('Drupal Theme', 'http://www.leveltendesign.com/'); ?> by LevelTen Interactive</div>
    </div>

Then edit styles.css and add a line to center the text (if you want it centered). Change this (at line 411):

#footer-wrap {
  background-color: #ffffff;
  color: #666666;
  margin-top: 10px;
  padding-bottom: 10px;
}

to this:

#footer-wrap {
  background-color: #ffffff;
  color: #666666;
  margin-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

I hope that helps!