Okay,
I have a banner on my front page, but it's not clickable.
My header.php has no reference whatsoever to an image banner - it only references a "Home" link, which is a text link. It's completely separate from my banner.
Here's the relative code in my header.php. I can't figure out how to leave the Home link in tact *while adding* the parameters for a clickable banner. How can I mod this to have both a clickable banner + leave the Home link?
<?php wp_head(); ?>
</head>
<body>
<div id="wrapper"><a name="top"></a>
<div id="masthead" class="fix">
<div id="headLinks">
<ul>
<li><a href="<?php bloginfo('url'); ?>/">Home</a></li>
<?php wp_list_pages('title_li='); ?>
</ul>
</div>
</div>
Thanks