I'm sure most of you already know this but for those that don't...
There's a very simple CSS trick for adding a logo to your website, and simultaneously utilizing the seo-weight of an H1 tag:
Code: <h1 id="logo">A few Words of Text</h1>
CSS Code:
#logo{
width: 100px;
height: 100px;
background-image: url("/images/location-of-your-logo.gif");
text-indent: -10000px;
}
That's all there is. Google will see the header text, but your users will see your logo.
There's a very simple CSS trick for adding a logo to your website, and simultaneously utilizing the seo-weight of an H1 tag:
Code: <h1 id="logo">A few Words of Text</h1>
CSS Code:
#logo{
width: 100px;
height: 100px;
background-image: url("/images/location-of-your-logo.gif");
text-indent: -10000px;
}
That's all there is. Google will see the header text, but your users will see your logo.