How do I make my header link back to my homepage? The site in question is in my sig. Any help with be appreciated.
You need to make it an actual image instead of being a background image. Then, just make the image link to your homepage.
Remove the background-image: url(images/cod4sourcesmall.jpg); from the header section of your css file Then in the <div class="header"> section add this code <a href="/" title="Home"><img src="/images/cod4sourcesmall.jpg" border="0" /></a> That should do it for you . aubenrey
Yep it's up to you, you can either have your header look like this: <div id="header"> <h1>My Site Keyword or 2 Maybe!</h1> </div> See: http://www.pmob.co.uk/temp/headerreplacement3.htm Or <div id="header"> <a href="/" title="Home & Maybe Keyword or 2"><img src="/images/cod4sourcesmall.jpg" border="0" / alt="Some Description"></a> </div> Both can be made to look like a clickable header, without any differences.