Of course, all that stuff is only necessary if you want the whole banner to be clickable to return you to your home page. The blog name and subtitle (which you can set in your admin options) are already clickable links to the home page. I notice you've set them blank; if you add them back in, you'll get the links you're looking for.
If you just want a custom header, I had problems getting Bulletproof to use my custom image in the header, too. I didn't realize that
two steps were necessary:
- Select an image for the custom header
- Enable the "use custom image" option
I've got a couple of ideas for a clickable banner that don't require modifying Bulletproof files or keeping copies around for when an updates overwrites your changes.
Option 1 for a clickable banner is to enable the nav bar. Just provide a single link, "home". With this option, you could even set the "whole banner" clickable with a little something in your user.css (after you turn that option on in the config):
Code: Select all
#sitenav a {
display: block;
width: 701px;
height: 180px;
}
Unfortunately, the banner may not overlap with the nav bar, and you may wind up with some visual anomalies. (Bear with me, I'm making this up as I go along!)
Option 2 is probably your best bet. Don't worry about the nav bar. Make sure your user.css is enabled in the BP options, and then expand the H1 and H2 links so they entirely cover the banner. Finally, replace the banner with a custom banner in the BP options, as described above.
I'd probably remove the H2 link altogether, and make the H1 link take up the whole banner, like this:
Code: Select all
.serendipity_banner h2 {
display: none;
}
.serendipity_banner h1 a {
display: block;
margin: 0;
padding: 0;
width: 100%;
height: 72px;
}
I used Firebug on your site to make sure that would work.
The nice thing about Option 2 is that it uses the existing options and won't be overwritten when Bulletproof is updated. You get a custom, clickable banner that takes you back to your home page, just as you desired.