Closed (fixed)
Project:
BlueMasters
Version:
7.x-1.0
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Reporter:
Created:
13 Mar 2011 at 20:22 UTC
Updated:
21 Mar 2011 at 20:38 UTC
Remove function bluemasters_preprocess_page(&$vars) {} from template.php file.
Remove function bluemasters_preprocess_page(&$vars) {} and replace in page--front.tpl.php /page.tpl.php the logo-floater div with the following code:
<div id="logo-floater">
<?php if ($logo): ?>
<a href="<?php print check_url($front_page); ?>" title="<?php print t('Home'); ?>">
<img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" />
</a>
<?php endif; ?>
<?php if ($site_name || $site_slogan): ?>
<div class="clearfix">
<?php if ($site_name): ?>
<span id="site-name"><a href="<?php print check_url($front_page); ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a></span>
<?php endif; ?>
<?php if ($site_slogan): ?>
<span id="slogan"><?php print $site_slogan; ?></span>
<?php endif; ?>
</div>
<?php endif; ?>
</div> <!--EOF:logo-floater-->
Comments
Comment #1
gtsopour commentedI am working on this issue.
Will fillow a comprehensive patch file with all appropriate changes.
Comment #2
gtsopour commentedDone and committed
Comment #3
skounis commentedfixed in 7.x-1.1, http://drupal.org/node/1100654