Hi all,
i am trying to make a banner with several divs but i cannot work out how to create this layout.
This is what i am trying to make:
http://img440.imageshack.us/i/bannerur.jpg/
I cannot succeed in getting the menubar (light blue) and the logo on the correct place.
What I have now is:
i am trying to make a banner with several divs but i cannot work out how to create this layout.
This is what i am trying to make:
http://img440.imageshack.us/i/bannerur.jpg/
I cannot succeed in getting the menubar (light blue) and the logo on the correct place.
What I have now is:
Code:
<div id="banner">
<div id="menubar">
</div>
<div id="logo">
</div>
</div>
Code:
#banner{
background-image:url(banner_bg.jpg);
background-repeat:repeat-x;
height:150px;
}
#menubar{
margin-top:80px;
height:15px;
width:750px;
background:#000;
}
#logo{
background-image:url(logo.gif);
width:75px;
height:100px;
margin-left:5px;
margin-top:10px;
}