Trying this....
I can get the full red color for the whole area
I can get the 80px height blue on top
But cant figure how to get the image on top of the blue and hanging over the blue onto the red
The image does not show up
Code:
<div id="headerbackground">
<div id="secondheader">
<div id="thirdheader">
</div>
</div>
</div>
Code:
#headerbackground{
text-align:left;
width:100%;
background:red;
height:100px;
}
#secondheader{
height="100px";
width="100px";
background-image:url('background1.gif');
background-size:100px 100px;
background-repeat:no-repeat;
}
#thirdheader{
text-align:left;
width:100%;
background:blue;
height:80px;
}