How can I have a logo linked to homepage and also have h1 but invisible
I have layout like this
<header id="pageHeader">
<h1>
<a href="<?php bloginfo('url'); ?>">
<?php bloginfo('name'); ?>
</a>
</h1>
Then I've used the css to for image as background but the logo is not loading, anyone?
header#pageHeader h1 a {
width:130px;
height:70px;
text-indent:-9999px;
background:url(/pict/logo.png);
background-repeat: no-repeat;
}