Is it possible to get the site logo to link to an external URL? (University context)
Sure. You have to modify page.tpl.php, as follow:
<?php if ($logo): ?> <a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>"> <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /> </a> <?php endif; ?>
becomes
<?php if ($logo): ?> <a href="YOUR NEW URL" title="<?php print t('Home'); ?>"> <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /> </a> <?php endif; ?>
Comments
Comment #1
mlines commentedComment #2
florian commentedSure. You have to modify page.tpl.php, as follow:
becomes
Comment #3
florian commented