i'm trying to get my background image to display within the header div but it is not displaying. Can someone tell where on what i'm doing wrong?
css code:
#header{
width:900px;
/*background-color:#009999;*/
background-image:url('../images/background_img.jpg');
float:left;
text-align:center;
}
html code
<body>
<div class="contentwrapper">
<div id="header">
hello
<!--<div id="logo">
<img src="images/small_gama_logo.png" />
</div>
<div id="company_name">
<h1>Gama Corporate Services Sdn Bhd</h1>
</div>-->
</div>
<div id="navbar">
<ul>
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</div>