I haven't set up the server yet, but I realise myself now. When I change the code:
Code:
.left h2 {
background-image:url(../images/big_header_content.png);
height:40px;
}
To:
Code:
.left.header {
background-image:url(../images/big_header_content.png);
height:40px;
}
And change the html code aswell which was <h2>header</h2> to <div class="header">header</div>
The background is gone. So this means the <div> code is wrong. I've tested this aswell, I changed the footer to ".left h3" so in the html aswell, and the background showed up. This means html code must be wrong, am I correct?