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

gtsopour’s picture

I am working on this issue.
Will fillow a comprehensive patch file with all appropriate changes.

gtsopour’s picture

Status: Active » Fixed

Done and committed

skounis’s picture

Status: Fixed » Closed (fixed)