Alrighty, Using the music-illustrated theme. I can make my entire header a link back home, no prob, but I want only the "banner" to link. The php and its placement regarding the "banner" are confusing me. Suggestions? Forgive my ignorance, first post to WP.org.
header.php
<!-- header START -->
<div id="header" >
<!-- banner START -->
<?php if( $options['banner_content'] && (
($options['banner_registered'] && $user_ID) ||
($options['banner_commentator'] && !$user_ID && isset($_COOKIE['comment_author_'.COOKIEHASH])) ||
($options['banner_visitor'] && !$user_ID && !isset($_COOKIE['comment_author_'.COOKIEHASH]))
) ) : ?>
<div class="banner">
<?php echo($options['banner_content']); ?>
</div>
<?php endif; ?>
<!-- banner END -->
<div id="caption">
<h1 id="title"><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1>
<div id="tagline"><?php bloginfo('description'); ?></div>
</div>
<div class="fixed"></div>
</div>
<!-- header END -->
<!-- navigation START -->
<div id="navigation">
<!-- menus START -->
<ul id="menus">
<li class="<?php echo($home_menu); ?>"><a class="home" title="<?php _e('Home', 'inove'); ?>" href="<?php echo get_settings('home'); ?>/"><?php _e('Home', 'inove'); ?></a></li>
<?php
if($options['menu_type'] == 'categories') {
wp_list_categories('title_li=0&orderby=name&show_count=0');
} else {
wp_list_pages('title_li=0&sort_column=menu_order');
}
?>
</ul>
<!-- menus END -->
<div class="fixed"></div>
</div>
<!-- navigation END -->