Similar to stackoverflows header, I am trying to make my header background color expand and take over both sides of the page while still keeping the text in the center but I'm not sure of the correct technique on how to do this using the 960grid system. This is my html:
<body>
<div class="container_24">
<div id="header-top-border" class="grid_24"></div> # take over top of page.
<div id="header-background" class="grid_24"></div> # take over top of page.
<div id="logo" class="grid_5">
<h1>Logo</h1>
</div>
</div>
</div>
I would like have the Logo be on top of the header-background
and judging by the css on this site I'm not sure if it should be inside of the header-background
div or not. How is this done?
Thank you.