--
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.
If your layout is fixed and you know the widths of the columns
Other possible solutions include using faux columns first for a liquid layout and then go back to elastic (personally i don't like this one).
$(document).ready(function () { $('body').hide(); jQuery(document).bind('elastic:initialize', function () { $('body').show(); Elastic.refresh(); }); });