Search for this on header.php:
<div id="header">< a name = " top " >
<h1>< a titl e= " Home is where the heart is" href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></h1>
<div id="topmenu">
...
Paste this:
<div id="header">< a name = " top " > < / a >
<h1>< a title = " Home is where the heart is" href = " <?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?>< / a ></h1>
<div id="topmenu">
Open CSS and search this:
h1, h1 a{font: 30px normal arial, Helvetica, Sans-Serif;float:right;color:#AEC1CD;
font-variant: small-caps;padding:0 20px 0 0 ;margin:0;}
Replace with this:
#header h1,#header h1 a{font:30px normal arial,Helvetica,Sans-Serif;float:right;color:#AEC1CD;
font-variant:small-caps;padding:0 20px 0 0;margin:0;}
The "a" tag was open, sorry.