Can you provide a link to your site please?
Sure, here is the site I’m using to get to know this theme:
http://www.arschhund.ch/pod2/
Instead of the titel, I want to have some kind of logo there, for example the one you see in the first post beneath it….
There are a few way you can do this.
In your header.php, you could find the <h1> and replace the content by the image. So you’ll have something like this:
<h1 id="site-title"><a href="http://www.arschhund.ch/pod2" title="Logo here" rel="home"><img scr="pathtoimagefile-goes-here" ></a></h1>
Or via CSS, you could edit the style sheet so that you have:
#site-title {
background: url(images/logo.png);
width: xx.px;
height: xx.px;
}
I tried to see how it works in other themes, and saw that I need the <h1… but there seems to be none in this theme.
I have the header open, and do a searc for h1 and there is no occurence.
So I need to do it via the css! thanks alot for copying in the solution, I’m so clueless right now (but it’ll get better!)
Lets try!