Is there a way to have a logo linked to the homepage and also have an h1 element that is invisible?
This is my current layout:
<header id="pageHeader">
<h1>
<a href="<?php bloginfo('url'); ?>">
<?php bloginfo('name'); ?>
</a>
</h1>
I've tried using CSS to set the image as a background, but the logo is not loading. Can anyone help with this issue?
header#pageHeader h1 a {
width:130px;
height:70px;
text-indent:-9999px;
background:url(/pict/logo.png);
background-repeat: no-repeat;
}