Hey everyone. I'm using Drupal 4.7 with the SeoPosition theme and I wanted to replace the header image. You can see my site at the following link.
http://www.shawnwasson.com
There is an image on top of my banner (just a thin black line) for some reason but that's not the real issue here. I want to make the banner clickable so it redirects back to the homepage. Do I do this is style.css? Any help is really appreciated. Thanks!

Comments

matt v.’s picture

You probably want to add the link in the page.tpl.php file of your theme. I'm not using 4.7 and I don't have the SeoPosition theme installed, so I can't say exactly where, but the equivalent line in the theme I'm using looks something like this:

<?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 } ?>