Okay guys, help me out here. I'm sure there's an extremely easy fix for this, but my brain's fried today. I'm running The Jewelry Shop theme, site address is taelirdesigns.com. Yes, I can always email the theme designer, but they're in Germany and I figured this was an easy enough question that I could pop over here for advice :)
I'm trying to add a link to the homepage from the logo image, and this was the last bit of code I tried:
<div id="pg_wrap">
<div id="header" class="clearfix noprint">
<div id="branding"> onclick="location.href='http://taelirdesigns.com';" style="cursor: pointer;">
</div>
<div class="container clearfix">
<?php include (get_template_directory() . '/includes/headers/header_contents.php');?>
</div><!-- container -->
</div><!-- header-->
Adding the "branding" div like above will give me the logo image with a link, but I get the header displayed twice, basically. I'd found some other code elsewhere that was similar, and that did work too, but instead of just the logo image being clickable, the entire header container was. Didn't want that, so I went with what I posted above.
What do I need to change to just get the logo image "branding" div ID to be clickable, versus the entire container? I see the container div calls the header_contents.php, do I need to be looking there instead? I can post that code if need be, too.
Thanks in advance for the help!