For some reason, I am encountering an issue with displaying my banner on all browsers except Safari. When I use the inspect element feature, it shows that the banner is there, but it's not visible on the screen. Here is the HTML and CSS code for the header. Can you spot any mistakes I might be making?
HTML
<div id="int-site-container">
<div id="int-site">
</div>
</div>
CSS
#int-site-container{
margin: 0;
}
#int-site{
background: url(/images/<mysite>-introbanner.png) center top no-repeat;
height:inherit;
}