2. How can I make my header linkable? Thank you.
You can't add links directly using CSS, but often you can set a background to a link element that's already clickable and use that to make what you add with CSS appear clickable. In your current setup, you might start by hiding the current header image like this:
#headerimage {
background: none;
height: 0;
}
Then you could make space inside the site title area used by the MistyLook theme to add a new header image as a background for the site title link:
#header {
width: 938px;
padding-bottom: 0;
}
#header h1 a {
display: block;
width: 958px;
height: 116px;
background: url('http://www.burnerprep.com/00224-1/design/images/header-bg.png') no-repeat;
}
For a final touch, you can hide the tagline area (the "h2" in the header) to get rid of the space it's using up and you can remove some padding from the feeds to tighten up the space below the header image:
#header h2 {
display: none;
}
html #feedarea {
padding-top: 0;
}