<div class="unit">
header
</div>
<div class="unit">
tabs
</div>
<div class="unit elastic-height" style="background-color: red;">
<div class="container full-height">
<div class="on-2 columns full-height">
<div class="fixed column full-height main-sidebar" style="width: 300px; background-color: blue;">
sidebar
</div>
<div class="elastic column full-height" style="background-color: orange;">
content
</div>
</div>
</div>
</div>
<div class="unit">
footer
</div>
This will give you the basic layout you are looking for. i did not understand very well the rest of your needs so please be more specific if something is missing.
Now for the collapsible this is the most simple way to accomplish it:
$('.main-sidebar').bind('click', function(){
$(this).css('width', 0);
Elastic.refresh();
});
for the toogle well just do the same but set the width to the desired one.
> --
> You received this message because you are subscribed to the Google Groups "Elastic CSS Framework" group.
> To post to this group, send email to elastic-cs...@googlegroups.com.
> To unsubscribe from this group, send email to elastic-css-fram...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/elastic-css-framework?hl=en.
>
> To unsubscribe from this group, send email to elastic-css-fram...@googlegroups.com.