Struggling to grasp the concepts of using http://semantic.gs alongside LESS.js. The documentation provided isn't quite clear, and I haven't delved deep into understanding LESS.js. However, I have gone through the Semantic Grid System website's resources.
From what I gather, there are multiple columns numbered for processing by less.js.
// When defining a column in LESS...
article {
.column(9);
}
// It gets compiled to...
article {
display: inline;
float: left;
width: 700px;
margin: 0 10px;
}
Is it just a matter of changing positions for different columns?
Do you know how to determine which column is suitable for a footer? Should I resort to regular CSS techniques for creating a footer?
Thanks!