Posted by gandawaco on June 18, 2010 at 5:01pm
I am using the acquia prosper theme and would like to move the slogan under the logo if that is possible. i could probably figure it out myself, but i'm not sure which file to edit.
site in question: www.gandacomputers.com
Thanks
Comments
i found what i was looking
i found what i was looking for. moved the logo code from header-site-info-inner to the site-name-slogan section.
<div id="header-site-info-inner" class="header-site-info-inner inner clearfix">
#<?php if ($logo): ?>
#<div id="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>
#</div>
#<?php endif; ?>
<?php if ($site_name || $site_slogan): ?>
<div id="site-name-slogan" class="site-name-slogan">
<?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 if ($logo): ?><center>
<a href="<?php print check_url($front_page); ?>" title="<?php print t('Home'); ?>"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /></a>
<br>
<?php endif; ?><?php print $site_slogan; ?></center></span>
<?php endif; ?>
</div>
<?php endif; ?>
</div><!-- /header-site-info-inner -->