I am a newbie to 960.gs and experience some problems with it and html5.
I am trying the following: An image should span 2 grid units and in the same line a div should span 5 units then (because that "line" is full) a line break should follow and a heading should be displayed. I tried it the following way:
<div class="container_12">
<header class="grid_12">
<img src="nothing" class="grid_2 alpha"><div class="grid_5 suffix_5">SOMETHING</div>
<h1 class="grid_2 omega">title</h1>
</header>
</div>
In my understanding of 960.gs this should create the desired effect. It actually doesn't: It displays the image on one line and the div and the heading under each other and a little indented on the next line. Is this because of the usage of other elements than div's?
Thanks for your help in advance! (I got plenty of information from http://www.webdesignerdepot.com/2010/03/fight-div-itis-and-class-itis-with-the-960-grid-system/)