I am using the default theme, with a custom masthead replacing the default blue box on the title page.
On secondary pages (when I open the page for a particular blog entry) the top of the page shows the standard blue box. I want to change the theme settings so these pages too will use my custom masthead.
Any help on how to do this?
lwd
There is something strange with that setup.
Trying to view the header bg image - I get a blank page:
http://www.scribblingfoxes.com/blog/wp-content/themes/default/images/personalheader.jpg
Otherwise it shows up everywhere: index, archives, category.... except the single post view
So, where is the image coming from?
Actually moshu:
http://www.scribblingfoxes.com/blog/wp-content/themes/default/images/kubrickheader.jpg
lwd, this portion of your <head> seems to vanish on single post pages:
#header { background: url("http://www.scribblingfoxes.com/blog/wp-content/themes/default/images/kubrickheader.jpg") no-repeat bottom center; }
What does that section look like in your header.php? Is there a is_single() conditional test of some sort?
Hmm. In FF rightclick and View bg-image - takes you to the blank page.
Anyway, you got a step closer to the solution :)
"In FF rightclick and View bg-image - takes you to the blank page."
Because #headerimg outranks #header in regards to the DOM on that page (and Firefox's right-click event), and #headerimg is the one declaring the non-existent background image (i.e. personalheader.jpg).
That did it!
I duplicated my kubrickheader.jpg and renamed it personalheader.jpg and dropped it into the image folder. That's was the trick I couldn't figure out.
THANKS!
lwd