You’d have to play around with the header style in the css file. Upload the title/header image to your site files and remember the URL. Add it as a background to your #header style, something similar to the footer:
background: url(images/manifest/footer_bg.png);
Hope that gives you a start anyway…
Okey, I think I have found the line in “header.php” where i maybe should put the picture, but I don’t know how.
<h1 class="vcard author"><a href="<?php echo get_option('home');?>/" title="Elin och Martin" class="fn"><?php bloginfo('name');?></a></h1>
But how do I do it?
to put the image in type this: <img src="yourimage" alt="yourimage's name" /> and replace this code with the code above <a href="<?php echo get_option('home');?>/" title="Elin och Martin" class="fn"><?php bloginfo('name');?></a> replace yourimage with the image’s finename AND extension and replace yourimage’s name with what you want it to display if it can’t find the image. tell me if this helps!
Great!
It works! I had to put the FULL file extension in, not that that matters.
Thank you very much!