Is it possible to get the site logo to link to an external URL? (University context)

Comments

mlines’s picture

Title: logo to external YRL? » logo to external URL?
florian’s picture

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; ?>
florian’s picture

Issue summary: View changes
Status: Active » Closed (fixed)