We already saw how to replace the title of your blog with a custom logo, while leaving the tagline text visible.
Like this:
In this video we’ll add an image to your header and make it clickable at the same time.
Something like this:
Link from the video
Just the code please
CSS
.custom #header {
margin: 0;
padding: 0;
background: url(images/header.gif) no-repeat left top; /*replace header.gif with the name of your image*/
}
.custom #header #logo {
text-indent: -9999px;
}
.custom #header #logo a {
display: block;
width: 937px; /*change this to the width of your image*/
height: 100px; /*change this to the height of your image*/
}
HTML framework used in the video is Page, not Full-width. (what’s this?)


