I have this HTML code:
<div class="page">
<div id="header">
...
</div>
</div>
Below is my CSS:
.page {
width: 1028px;
background-color:#103250;
margin-left: auto;
margin-right: auto;
}
#header
{
background:url('/Img/SubpageBox1.png') no-repeat top;
height:150px;
padding-top:50px;
}
The issue I am facing is that the background-image is appearing outside of the div, at the top of the page. How can I properly position it at the top of the header?