I'm using the 960gs and i want my Header & navigation bar to be sticky at the top. I've tried to stick the div's using the position:fixed. Result: The Whole 960 grid messed up.
<!-- Header-->
<div class="container_12 stick">
<div class="grid_6 alpha ">
...
</div>
<div class="grid_6 omega">
...
</div>
</div>
<!-- NavBar->
<div id="nav" class="container_12 stick">
<div class="grid_2 alpha prefix_4" >
<h1><a href="#whoami">...</a></h1>
</div>
<div class="grid_2 button textAlignC">
<h1><a href="#works">...</a></h1>
</div>
<div class="grid_2 button textAlignC">
<h1><a href="#hobbies">...</a></h1>
</div>
<div class="grid_2 omega button textAlignC">
<h1><a href="#contacts">...</a></h1>
</div>
</div>
.stick{
position:fixed;
}
Ideas?